Last active
August 20, 2018 04:54
-
-
Save wallynm/3198ff73e8a1cf03832ccefe5db6e7a2 to your computer and use it in GitHub Desktop.
Medium 01 - CSS Modules
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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