Created
April 1, 2021 18:29
-
-
Save tedw/7955c341ad8563c6f0172f1c6768e8a3 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
$foo: "foo"; | |
$map: ( | |
key: value, | |
text: "Lorem ipsum", | |
$foo: "bar", | |
color: #f00, | |
320px: 16px, | |
); | |
$test: ( | |
320px: 16px, | |
skip 799px: 20px, | |
); | |
.test { | |
content: inspect($test); | |
} |
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 { | |
content: (320px: 16px, skip 799px: 20px); | |
} |
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": "Ruby Sass/3.7.4", | |
"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