Created
May 19, 2020 14:03
-
-
Save zidell/300cec55b41cac35b037ccebb508ea5a 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,body { | |
width: 100%; | |
height: 100%; | |
padding:0; | |
margin:0; | |
font-family:sans-serif; | |
line-height: 1.7rem; | |
background-color: $bg-color; /* CSS 변수가 안 될 때 */ | |
background-color: var(--bg-color); | |
color:$color3; | |
color:var(--color3); | |
} | |
.box { | |
background-color: $box-color; /* CSS 변수가 안 될 때 */ | |
background-color: var(--box-color); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment