Created
February 5, 2021 21:09
-
-
Save jasonmelgoza/a22a7e1a80eace6e2f7bf2b8d9482a28 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
// lists | |
$widths: 0, 1, 2, 3, 4; | |
@each $width in $widths { | |
.bw#{$width} { | |
border-width: #{$width}px !important; | |
} | |
} |
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
.bw0 { | |
border-width: 0px !important; | |
} | |
.bw1 { | |
border-width: 1px !important; | |
} | |
.bw2 { | |
border-width: 2px !important; | |
} | |
.bw3 { | |
border-width: 3px !important; | |
} | |
.bw4 { | |
border-width: 4px !important; | |
} |
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