반응형 nextjs1 [Next.js]다크모드 구현하기 (sass) 안녕하세요. 오늘은 next에서 scss를 이용해서 다크 모드를 구현해볼 건데요. 왜 css 가 아닌 scss(sass)를 사용하는지 차이점을 비교하고 다크 모드를 구현해보겠습니다. Sass vs Css css 코드 .container { background-color: yellow; } .container div { background-color: green; } .container div a { color: red; } Scss 코드 .container { background-color: yellow; div { background-color: green; a { color: red; } } } 첫 번째로 nesting이 가능하다는 것인데요. 또한, scss에서는 변수, 함수 선언이 가능하고 Mixi.. 2022. 4. 24. 이전 1 다음 반응형