Created
March 3, 2022 11:10
-
-
Save 10n37/e647d7638c46b9b482e936ea0c8a0422 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
.selector { | |
$this: &; | |
&:not(:active), | |
&:not(#{$this}--active) { | |
&#{$this}_color_hover, | |
&:hover { | |
background-color: var(--color-element-hover); | |
} | |
} | |
} |
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:not(:active).selector_color_hover, .selector:not(:active):hover, .selector:not(.selector--active).selector_color_hover, .selector:not(.selector--active):hover { | |
background-color: var(--color-element-hover); | |
} |
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