sass

    [React] SASS 기초 문법

    sass는 쉽게 말해 css를 확장해주는 라이브러리이다. 설치 $ cd styling-with-sass $ yarn add node-sass //class names 설치 $ yarn add classnames .scss 파일 //변수선언 $blue: #228be6; .Button { display: inline-flex; color: white; font-weight: bold; outline: none; border-radius: 4px; border: none; cursor: pointer; height: 2.25rem; padding-left: 1rem; padding-right: 1rem; font-size: 1rem; background: $blue; // 주석 사용 &:hover { back..