Skip to content

Instantly share code, notes, and snippets.

@dippas
Last active May 8, 2017 13:25
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 dippas/5ac7a72306d9e4e13c0009cc7eecad04 to your computer and use it in GitHub Desktop.
Save dippas/5ac7a72306d9e4e13c0009cc7eecad04 to your computer and use it in GitHub Desktop.
why does almost all of this file get omitted in the output?
// ----
// libsass (v3.5.0.beta.2)
// ----
button.btn-danger
background-image:none
button
border: 1px inset
.danger
background-image:none
.btn
background-image:none
&.btn
background-image:none
&:hover
font: 10px
button.btndanger
backgroundimage:none
button.btn-danger {
background-image: none;
}
button {
border: 1px inset;
}
button .danger {
background-image: none;
}
button .btn {
background-image: none;
}
button.btn {
background-image: none;
}
button:hover {
font: 10px;
}
button.btndanger {
backgroundimage: none;
}
@dippas
Copy link
Author

dippas commented May 8, 2017

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment