Created
January 28, 2021 19:07
-
-
Save khamer/35a7ded4116d1caa4a0220a294fca159 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
.link { | |
color: blue; | |
text-decoration: underline; | |
&.-secondary { | |
color: green; | |
} | |
/* variant */ | |
&--button { | |
background-color: blue; | |
border: 0; | |
display: inline-block; | |
color: white; | |
&.-outlined { | |
border: 1px solid blue; | |
background-color: transparent; | |
color: blue; | |
} | |
} | |
} |
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
.link { | |
color: blue; | |
text-decoration: underline; | |
/* variant */ | |
} | |
.link.-secondary { | |
color: green; | |
} | |
.link--button { | |
background-color: blue; | |
border: 0; | |
display: inline-block; | |
color: white; | |
} | |
.link--button.-outlined { | |
border: 1px solid blue; | |
background-color: transparent; | |
color: blue; | |
} |
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": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment