SMALL

SCSS에서 $변수명= 주고싶은 내용 을 작성하면

원하는 원하는 곳에서 속성: $변수명; 으로 사용가능

 

// new_main_body
$backgroundColor: #f1f5fa;
$gap: 20px;

.new_content_container {
  background-color: $backgroundColor;
  padding: $gap;
}

 

LIST

'일반' 카테고리의 다른 글

Ant Design - Modal에 있는 버튼에 css 적용  (0) 2023.08.31
파레토 법칙  (0) 2023.08.30
랜선  (0) 2023.08.30
Ant Design - Radio  (0) 2023.08.30
Ant Design - Input.Group에서 compact 속성  (0) 2023.08.29

+ Recent posts