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
@import "breakpoint"; | |
// SASS 'map' | |
// ---------- | |
$font-sizes: (tiny: 9px, small: 12px, medium: 16px, large:24px); | |
// SASS 'each loop' over SASS map (name = current itteration) | |
@each $name, $size in $font-sizes { | |
.#{$name} { |
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
@import "breakpoint"; | |
// SASS 'map' | |
// ---------- | |
$font-sizes: (tiny: 9px, small: 12px, medium: 16px, large:24px); | |
// SASS 'each loop' over SASS map (name = current itteration) | |
@each $name, $size in $font-sizes { | |
.#{$name} { |
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
@import "breakpoint"; | |
// SASS 'map' | |
// ---------- | |
$font-sizes: (tiny: 9px, small: 12px, medium: 16px, large:24px); | |
// SASS 'each loop' over SASS map (name = current itteration) | |
@each $name, $size in $font-sizes { | |
.#{$name} { |
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
@import "breakpoint"; | |
// SASS 'map' | |
// ---------- | |
$font-sizes: (tiny: 9px, small: 12px, medium: 16px, large:24px); | |
// SASS 'each loop' over SASS map (name = current itteration) | |
@each $name, $size in $font-sizes { | |
.#{$name} { |
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
@import "breakpoint"; | |
// SASS 'map' | |
// ---------- | |
$font-sizes: (tiny: 9px, small: 12px, medium: 16px, large:24px); | |
// SASS 'each loop' over SASS map (name = current itteration) | |
@each $name, $size in $font-sizes { | |
.#{$name} { |
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
@import "breakpoint"; | |
// SASS 'map' | |
// ---------- | |
$font-sizes: (tiny: 9px, small: 12px, medium: 16px, large:24px); | |
// SASS 'each loop' over SASS map (name = current itteration) | |
@each $name, $size in $font-sizes { | |
.#{$name} { |
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
@import "breakpoint"; | |
// SASS 'map' | |
// ---------- | |
$font-sizes: (tiny: 9px, small: 12px, medium: 16px, large:24px); | |
// SASS 'each loop' over SASS map (name = current itteration) | |
@each $name, $size in $font-sizes { | |
.#{$name} { |
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
@import "breakpoint"; | |
// SASS 'map' | |
// ---------- | |
$font-sizes: (tiny: 9px, small: 12px, medium: 16px, large:24px); | |
// SASS 'each loop' over SASS map (name = current itteration) | |
// $name = key, $size = value | |
@each $name, $size in $font-sizes { |
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: ( | |
"primary": #FAFEFF, | |
); | |
@each $key, $val in $colors { | |
.text-#{$key} { | |
color: $val; | |
} | |
@for $i from 1 through 9 { |
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: ( | |
"primary": #FAFEFF, | |
); | |
@each $key, $val in $colors { | |
.text-#{$key} { | |
color: $val; | |
} | |
@for $i from 1 through 9 { |