scss module

speciaLLunch·2023년 8월 21일

scss

  • CSS : Cascading Style Sheets
  • SASS : Syntactically Awesome Style Sheets
  • SCSS : "Sassy" CSS

typed-scss-modules

scss 파일을 type definitions으로 생성

@import "variables";

.text {
  color: $blue;

  &-highlighted {
    color: $yellow;
  }
}

         ▽

export declare const text: string;
export declare const textHighlighted: string;

https://velog.io/@jch9537/CSS-SCSS-SASS
https://www.npmjs.com/package/typed-scss-modules

profile
web front

0개의 댓글