Created
March 17, 2021 20:52
-
-
Save skhashaev/c9babca3c0ca2f3b7d8d8219c1608735 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
/* --- Property declaration ---*/ | |
// .circle { | |
// $size: 100px; | |
// width: $size; | |
// height: $size; | |
// border-radius: $size / 2; | |
// } | |
/* Interpolation */ | |
// $property: filter; | |
// $value: grayscale(50%); | |
// $prefix: webkit; | |
// .gray { | |
// -#{$prefix}-#{$property}: #{$value}; | |
// } | |
/* Nesting */ | |
// .header { | |
// font: { | |
// size: 14px; | |
// family: Lato, sans-serif; | |
// weight: bold; | |
// style: italic; | |
// }; | |
// } | |
// .icon { | |
// margin: auto { | |
// bottom: 10px; | |
// top: 2px; | |
// } | |
// } |
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
/* --- Property declaration ---*/ | |
/* Interpolation */ | |
/* Nesting */ |
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