-
-
Save ashimon83/78f64f3856f8ad86b70b3b3fd7d14044 to your computer and use it in GitHub Desktop.
blog202012 cssmodules_on
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
.className { | |
color: green; | |
background: red; | |
} | |
.otherClassName { | |
composes: className; // .classNameの定義を継承する | |
color: yellow; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment