Skip to content

Instantly share code, notes, and snippets.

View ispykenny's full-sized avatar

Kenny Krosky ispykenny

View GitHub Profile

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

$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");