Skip to content

Instantly share code, notes, and snippets.

@oscarryz
Last active June 20, 2020 23:12
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 oscarryz/ace487a253cc0ac9fb35e16a86904edb to your computer and use it in GitHub Desktop.
Save oscarryz/ace487a253cc0ac9fb35e16a86904edb to your computer and use it in GitHub Desktop.
/* full component */
.button {
color: red;
font-family: sans-serif;
..etc. etc.
}
/* or utilities */
.red {
color: red;
}
.sans {
font-family: sans-serif;
}
/* more utiliies here */
... Example using both
<div class="button">Warning</div>
vs
<div class="red sans shadow medium-size">Warning</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment