TIL | SCSS !default(초기 설정)

cos·2022년 1월 12일
0
post-thumbnail

CSS

.box {
  background-color: red;
}

⬇️
SCSS

$color-primary: red;

.box {
  $color-primary: blue !default;
  background-color: $color-primary;
}

!default 기입시 지정된 변수가 아닌 초기 지정 변수로 출력한다.

profile
The journey is the reward

0개의 댓글

관련 채용 정보