Created
May 19, 2020 14:05
-
-
Save zidell/d3fe9e579916fc055ff1acc5c37f6dc7 to your computer and use it in GitHub Desktop.
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
/* 미디어 쿼리 없이 일반적인 형식으로 대체 */ | |
html.darkmode:root { | |
... | |
} | |
.btn-primary { | |
// 라이트모드에서의 속성들 | |
html.darkmode & { /* 다른 셀렉터와 손쉽게 결합 */ | |
// 다크모드에서의 속성 오버라이드 | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment