This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@for $space from 0 through $spacing-limit { | |
$value: $space + rem; | |
.util-pad { | |
@include spacing-loop("padding", $space, $value); | |
} | |
.util-margin { | |
@include spacing-loop("margin", $space, $value); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@for $space from 0 through $spacing-limit { | |
$value: $space + rem; | |
.util-pad { | |
} | |
.util-margin { | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@for $space from 0 through $spacing-limit { | |
$value: $space + rem; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@for $space from 0 through $spacing-limit { | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$spacing-key: ( | |
"top": "top", | |
"right": "right", | |
"left": "left", | |
"btm": "bottom", | |
"all": null, | |
"vert": null, | |
"horiz": null | |
); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@mixin spacing-loop($property, $space, $value) { | |
@each $poskey, $posvalue in $spacing-key { | |
&-#{$poskey}-#{$space} { | |
@if $poskey == "all" { | |
#{$property}: $value; | |
} | |
@else if $poskey == "vert" { | |
#{$property}-top: $value; | |
#{$property}-bottom: $value; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$spacing-limit: 4; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function jira-commit() { | |
branch_name=$((git symbolic-ref HEAD | cut -d'/' -f3) | tr '[:lower:]' '[:upper:]') | |
git commit -m "$@"$'\n'"${branch_name}"; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.obj-grid { | |
display: grid; | |
grid-gap: 1.25rem; | |
grid-template-columns: repeat(12, 1fr); | |
} | |
.obj-grid .obj-grid__1-12 { | |
width: auto; | |
grid-column: span 1; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// libsass (v3.5.4) | |
// ---- | |
// Grayscale Maker | |
// Add a number and this will make a gray by | |
// darken white that percentage. | |
@function gray($level) { | |
@if $level == 0 { | |
@return white; |