Skip to content

Instantly share code, notes, and snippets.

@wallynm
Last active August 20, 2018 04:54
Show Gist options
  • Save wallynm/3198ff73e8a1cf03832ccefe5db6e7a2 to your computer and use it in GitHub Desktop.
Save wallynm/3198ff73e8a1cf03832ccefe5db6e7a2 to your computer and use it in GitHub Desktop.
Medium 01 - CSS Modules
.form {
border: 1px solid #CCC;
background: #FFF;
}
.xmas {
composes: form;
background: red;
}
.simple {
composes: form;
background: #CCC;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment