Skip to content

Instantly share code, notes, and snippets.

@basickarl
Created November 17, 2022 10:51
Show Gist options
  • Save basickarl/1e912d3db0dc4ab7d68e1847589d8935 to your computer and use it in GitHub Desktop.
Save basickarl/1e912d3db0dc4ab7d68e1847589d8935 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
.danger {
background: red;
&.text {
background: lime;
font-style: italic;
color: white;
}
}
.text {
background: blue;
}
<div class="danger">
HELLO
<span class="text">BLA</span>
</div>
<div class="danger text">
BERP
<span class="text">DOH</span>
</div>
.danger {
background: red;
}
.danger.text {
background: lime;
font-style: italic;
color: white;
}
.text {
background: blue;
}
{
"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