Skip to content

Instantly share code, notes, and snippets.

@zidell
Created May 19, 2020 14:04
Show Gist options
  • Save zidell/01eb349c983d47f42ca0da5d3465ab4f to your computer and use it in GitHub Desktop.
Save zidell/01eb349c983d47f42ca0da5d3465ab4f to your computer and use it in GitHub Desktop.
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