This file contains 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
// aspect-ratio() | |
// | |
// Use on a container that you want to maintain a specific aspect ratio when scaling | |
// | |
// $width - in pixels | |
// $height - in pixels | |
@mixin aspect-ratio($width, $height) { | |
position: relative; |
This file contains 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
$colors: ( | |
black: $black, | |
white: $white, | |
"gray-50": $gray-50, | |
"gray-100": $gray-100, | |
"gray-200": $gray-200, | |
"gray-300": $gray-300, | |
"gray-400": $gray-400, | |
"gray-500": $gray-500, | |
"gray-600": $gray-600, |