Last active
October 8, 2020 07:07
-
-
Save janrenn/5b954884c2e8dfb2331455aa503fda26 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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
> 0.3% | |
last 2 versions | |
not dead | |
Chrome >= 45 | |
Firefox >= 38 | |
Edge >= 12 | |
Explorer >= 11 | |
iOS >= 9 | |
Safari >= 9 | |
Android >= 4.4 | |
Opera >= 30 |
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
.foo { | |
width: max(10px, env(safe-area-inset-left)); | |
} | |
@mixin foobar { | |
display: flex; | |
} | |
@mixin baz { | |
@include foobar; | |
font-weight: 400; | |
} | |
.foo { | |
color: red; | |
.bar { | |
color: green; | |
background: red; | |
} | |
& .baz { | |
color: gold; | |
} | |
.baz & { | |
color: crimson; | |
@include baz; | |
} | |
} | |
$foo: foobar; | |
a { | |
color: $foo; | |
} | |
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
.foo { | |
width: max(10px, env(safe-area-inset-left)); | |
} | |
.foo { | |
color: red; | |
} | |
.foo .bar { | |
color: green; | |
background: red; | |
} | |
.foo .baz { | |
color: gold; | |
} | |
.baz .foo { | |
color: crimson; | |
display: flex; | |
font-weight: 400; | |
} | |
a { | |
color: foobar; | |
} |
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
{ | |
"sass": { | |
"compiler": "dart-sass/1.26.11", | |
"extensions": {}, | |
"syntax": "SCSS", | |
"outputStyle": "expanded" | |
}, | |
"autoprefixer": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment