Created
February 7, 2023 12:51
-
-
Save Haroenv/0510cc916742e268b310e328cd41eb70 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
@function foo($a, $b) { | |
@return $a + $b; | |
} | |
@function bar($start) { | |
$output: $start; | |
@for $i from 0 to 100 { | |
$output: $output + foo($i, 3) | |
} | |
@return $output | |
} | |
selector { | |
single: foo(1, 2); | |
multi_string: bar(''); | |
multi_number: bar(0); | |
} |
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
selector { | |
single: 3; | |
multi_string: "3456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102"; | |
multi_number: 5250; | |
} |
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.32.12", | |
"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