Created
October 11, 2018 04:25
-
-
Save elijahmanor/85a98ec4a646f9d97d30b2ee68fc1820 to your computer and use it in GitHub Desktop.
Medium Article: CSS Modules - Link.module.css Code Snippet
This file contains hidden or 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
.default { | |
color: #61dafb; | |
padding: 5px; | |
} | |
.warning { | |
composes: default; | |
color: #282c34; | |
background-color: yellow; | |
} | |
.error { | |
composes: warning; | |
color: red; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment