Created
May 19, 2020 14:04
-
-
Save zidell/01eb349c983d47f42ca0da5d3465ab4f 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