Skip to content

Instantly share code, notes, and snippets.

@pdokas
Created February 3, 2016 21:48
Show Gist options
  • Save pdokas/f6dcad746995903f5a15 to your computer and use it in GitHub Desktop.
Save pdokas/f6dcad746995903f5a15 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.3.2)
// ----
@mixin blue {
color: blue;
}
@mixin border {
border: 1px solid black;
}
@mixin padding {
padding: 10px;
}
div {
@include blue;
@include border;
@include padding;
}
button {
@include blue;
@include border;
@include padding;
}
div {
color: blue;
border: 1px solid black;
padding: 10px;
}
button {
color: blue;
border: 1px solid black;
padding: 10px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment