Skip to content

Instantly share code, notes, and snippets.

@davidpett
Created August 14, 2014 15:20
Show Gist options
  • Select an option

  • Save davidpett/d54174e9ff1d798dc13d to your computer and use it in GitHub Desktop.

Select an option

Save davidpett/d54174e9ff1d798dc13d to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.0.rc.3)
// Compass (v1.0.0.rc.1)
// ----
.btn {
background: #ff0000;
&--small {
font-size: 1em;
}
&--large {
font-size: 1.5em;
}
}
/*
shouldn't this render:
.btn,
.btn--small,
.btn--large {
background: #ff0000;
}
.btn--small {
font-size: 1em;
}
.btn--large {
font-size: 1.5em;
}
*/
.btn {
background: #ff0000;
}
.btn--small {
font-size: 1em;
}
.btn--large {
font-size: 1.5em;
}
/*
shouldn't this render:
.btn,
.btn--small,
.btn--large {
background: #ff0000;
}
.btn--small {
font-size: 1em;
}
.btn--large {
font-size: 1.5em;
}
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment