See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope>
is optional
$grid-breakpoints: ( | |
sm: "580px", | |
md: "767px", | |
lg: "992px", | |
xl: "1199px", | |
xxl: "1440px", | |
); | |
$bp-sm: map-get($grid-breakpoints, "sm"); | |
$bp-md: map-get($grid-breakpoints, "md"); |