Skip to content

Instantly share code, notes, and snippets.

@slobich
Created November 27, 2020 16:13
Show Gist options
  • Save slobich/1e94235b708996770b5ece4034869024 to your computer and use it in GitHub Desktop.
Save slobich/1e94235b708996770b5ece4034869024 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// Loše
.box__description {
color: red;
margin-bottom: 0;
:last-child {
margin-bottom: 0;
}
}
// Dobro
.box__description {
color: red;
&,
:last-child {
margin-bottom: 0;
}
}
.box__description {
color: red;
margin-bottom: 0;
}
.box__description :last-child {
margin-bottom: 0;
}
.box__description {
color: red;
}
.box__description,
.box__description :last-child {
margin-bottom: 0;
}
{
"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