Skip to content

Instantly share code, notes, and snippets.

@nex3
Forked from umairhm/input.scss
Created February 18, 2021 23:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nex3/72891019cc9443b9475368bf4986b74c to your computer and use it in GitHub Desktop.
Save nex3/72891019cc9443b9475368bf4986b74c to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
@mixin some-component-a {
.some-component {
display: inline;
body[lang='fr'] & div {
display: flex;
}
& div {
display: block;
}
&__span {
display: inline-block;
}
}
}
html[brand="a"] {
@include some-component-a();
}
html[brand=a] .some-component {
display: inline;
}
body[lang=fr] html[brand=a] .some-component div {
display: flex;
}
html[brand=a] .some-component div {
display: block;
}
html[brand=a] .some-component__span {
display: inline-block;
}
{
"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