Created
November 7, 2020 20:51
-
-
Save lunelson/a35de5ad116bcf133975cdc77e08096b to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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
@use 'sass:math'; | |
@use 'sass:list'; | |
@use 'sass:map'; | |
$theme: ( | |
breakpoints: ( | |
s: 20em, // 320 px alt: 20,30,45,60,75,90 | |
m: 32em, // 512 px | |
ml: 48em, // 768 px | |
l: 64em, // 1024 px | |
xl: 80em, // 1280 px | |
xl2: 96em, // 1536 px | |
), | |
grid-columns: ( _: 4 ), | |
font-sizes: ( | |
sans: ( | |
xs: ( _: 12px, m: 14px, ), | |
s: ( _: 14px, m: 16px, ), | |
m: ( _: 16px, m: 20px, ), | |
l: ( _: 18px, m: 24px, ), | |
), | |
mono: ( | |
xs: ( _: 11px, m: 13px, ), | |
s: ( _: 13px, m: 15px, ), | |
m: ( _: 15px, m: 18px, ), | |
l: ( _: 17px, m: 22px, ), | |
), | |
), | |
spacings: ( | |
outer-y: ( _: 2rem ), | |
outer-x: ( _: 2rem ), | |
inner-y: ( _: 2rem ), | |
inner-x: ( _: 2rem ), | |
), | |
); | |
$colors: (); | |
$schemes: ( | |
summit: (), | |
rasa-lite: (), | |
rasa-dark: (), | |
); | |
.test { | |
@each $b in list.join(_, map.keys(map.get($theme, breakpoints))) { | |
out: $b; | |
} | |
} |
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
.test { | |
out: _; | |
out: s; | |
out: m; | |
out: ml; | |
out: l; | |
out: xl; | |
out: xl2; | |
} |
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
{ | |
"sass": { | |
"compiler": "dart-sass/1.26.11", | |
"extensions": {}, | |
"syntax": "SCSS", | |
"outputStyle": "expanded" | |
}, | |
"autoprefixer": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment