OWL ITS + 탐지시스템(인터넷 진흥원)
jhjang
2021-10-26 d7a8eb9629a8de8b7157508d0c64c312a432d9d2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
:root {
  // Custom variable values only support SassScript inside `#{}`.
  @each $color, $value in $colors {
    --#{$color}: #{$value};
  }
 
  @each $color, $value in $theme-colors {
    --#{$color}: #{$value};
  }
 
  @each $bp, $value in $grid-breakpoints {
    --breakpoint-#{$bp}: #{$value};
  }
 
  // Use `inspect` for lists so that quoted items keep the quotes.
  // See https://github.com/sass/sass/issues/2383#issuecomment-336349172
  --font-family-sans-serif: #{inspect($font-family-sans-serif)};
  --font-family-monospace: #{inspect($font-family-monospace)};
}