Skip to content

Instantly share code, notes, and snippets.

@csswizardry
Created December 8, 2015 10:18
Show Gist options
  • Save csswizardry/118824c884549ef39bed to your computer and use it in GitHub Desktop.
Save csswizardry/118824c884549ef39bed to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<div class="promo">
Lorem ipsum dolor sit amet
</div>
// ----
// Sass (v3.4.14)
// Compass (v1.0.3)
// ----
@mixin box($size: 10px) {
display: block;
padding: $size;
}
.promo {
@include box(20px);
background: red;
color: white;
}
.promo {
display: block;
padding: 20px;
background: red;
color: white;
}
<div class="promo">
Lorem ipsum dolor sit amet
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment