Created
October 22, 2021 01:11
-
-
Save kevinpschaaf/4074291ac54e67df099871130b758764 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
@mixin sharedStuff { | |
:host { | |
color: red; | |
} | |
.mdc-density-5 { | |
padding: 5px; | |
} | |
} | |
/* ---- */ | |
@include sharedStuff; | |
:host { | |
background: green; | |
} | |
.mdc-thing { | |
border: blue; | |
} | |
/* ---- */ | |
@mixin sharedStuffWitHost { | |
&El { | |
color: red; | |
} | |
} | |
@mixin sharedStuffWitOther { | |
.mdc-density-5 { | |
padding: 5px; | |
} | |
} | |
@mixin sharedStuffWitOtherScoped { | |
&mdc-density-5 { | |
padding: 5px; | |
} | |
} | |
/* ---- scoped mode */ | |
.namespace { | |
@include sharedStuffWitHost; | |
@include sharedStuffWitOtherScoped; | |
&El { | |
background: green; | |
} | |
&mdc-thing { | |
border: blue; | |
} | |
} | |
/* ---- scoped mode */ | |
.namespace { | |
@include sharedStuffWitHost; | |
&El { | |
background: green; | |
} | |
} | |
@include sharedStuffWitOther; | |
.mdc-thing { | |
border: 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
/* ---- */ | |
:host { | |
color: red; | |
} | |
.mdc-density-5 { | |
padding: 5px; | |
} | |
:host { | |
background: green; | |
} | |
.mdc-thing { | |
border: blue; | |
} | |
/* ---- */ | |
/* ---- scoped mode */ | |
.namespaceEl { | |
color: red; | |
} | |
.namespacemdc-density-5 { | |
padding: 5px; | |
} | |
.namespaceEl { | |
background: green; | |
} | |
.namespacemdc-thing { | |
border: blue; | |
} | |
/* ---- scoped mode */ | |
.namespaceEl { | |
color: red; | |
} | |
.namespaceEl { | |
background: green; | |
} | |
.mdc-density-5 { | |
padding: 5px; | |
} | |
.mdc-thing { | |
border: 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.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