Skip to content

Instantly share code, notes, and snippets.

@jessehouchins
Created June 29, 2015 00:21
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 jessehouchins/0260b5536a0f54e77f9f to your computer and use it in GitHub Desktop.
Save jessehouchins/0260b5536a0f54e77f9f to your computer and use it in GitHub Desktop.
@mixin my-component {
all: initial;
* { all: unset; }
}
@mixin my-box {
@include my-component;
display: inline-block;
background: white;
border: 1px solid black;
padding: 10px;
}
.my-small-box {
@include my-box;
width: 100px;
height: 100px;
}
.my-large-box {
@include my-box;
width: 200px;
height: 200px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment