Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- suspense 비동기
- suspense 동작원리
- js 스코프
- 프로그래머스 문자열 압축
- 구름톤 챌린지 회고
- emtion app router
- app router emotion
- 백준 1339번 js
- 자바스크립트 스코프
- 프로그래머스 거리두기 확인하기
- js
- TypeError: createContext only works in Client Components. Add the "use client" directive at the top of the file to use it. Read more:
- 사용성 개선
- suspense react-query
- 백준 2108 nodejs
- 스코프
- js 거리두기 확인하기
- 백준 2108 자바스크립트
- emotion RSC
- 백준 1339번 자바스크립트
- next13 emotion
- 백준 1339번 nodejs
- 구름톤 챌린지
- js 문자열 압축
- 리액트쿼리 suspense
- 자바스크립트 문자열 압축
- suspense 병목현상
- 옵셔널체이닝
- 카카오 코테
- 구름톤
Archives
- Today
- Total
Lennon FE
[React] PostCSS에서 style값을 root처럼 사용하는 방법 본문
728x90
반응형
겹치는 것이나 많이 쓰이는 부분은 key: value로 정의하고,
React에서 해당 요소를 module로 가져와 사용할 수 있다.
/* colors.css */
@value key: value;
@value makerBlack: black;
@value makerWhite: white;
@value makerLightGrey: #e8e7e6;
@value makerLightPink: #ffeae8;
@value makerGrey: #626262;
@value makerGreen: #385461;
@value makerPink: pink;
@value makerShadow: rgba(217, 217, 217, 1);
@value makerColorful: linear-gradient(166deg, rgba(237, 193, 211, 1) 0%,rgba(212, 149, 161, 1) 60%, rgba(162, 63, 63, 1) 100%, rgba(127, 188, 242, 1) 100%);
@value makerWheat: wheat;
React에서 CSS에서 사용하는 방법! (당연히 모듈로 가져와야 사용가능)
/* index.module.css */
@import makerLightGrey from './common/ui/colors.css'
* {
color: makerLightGrey;
}
728x90
반응형
'🧑💻 Web > React' 카테고리의 다른 글
[React] 옵셔널 체이닝 (0) | 2022.07.21 |
---|---|
[React] 비동기 useState 동기로 처리하기 (0) | 2022.06.30 |
[React] React Route에 대해 알아보자 (0) | 2022.05.19 |
[React] React 기본 - JSX 문법 (0) | 2022.04.12 |
[React] React 기본 - CRA (0) | 2022.04.12 |
Comments