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
- nextjs사용법
- netlify redirect
- Vue
- 쌓임맥락
- 프로그래머스 데브코스 프론트엔드
- Spacer
- 다른컴퓨터에서 git사용
- SCSS extend
- postcss
- 고양이 사진 검색기
- git 같은계정 다른 컴퓨터
- intersection opserver
- 리스트 렌더링
- 폼 입력 바인딩
- SCSS forward
- KDT 프로그래머스 데브코스 프론트엔드
- 프로그래머스 K_Digital Training
- 이벤트 수식어
- vue 이벤트 수신
- KDT 프로그래머스
- 프로그래머스 프론트엔드 데브코스
- SCSS import
- vue mixin
- 리액트
- vuex map
- SCSS use
- react next
- flex
- 프로그래머스 데브코스
- vue 지역 컴포넌트
Archives
- Today
- Total
혼자 적어보는 노트
[React] Emotion CSS 사용 본문
props로 전달된 값에 따라 style을 지정하고 싶을 때
작성 해야 할 style이 길 경우 css의 템플릿 리터럴을 사용하여 작성할 수 있다.
import { css } from "@emotion/react";
const Button = styled.button<ButtonProps>`
display: ${({ block })=> block? 'block': 'inline-block'}
${({ styleType }) => styleType && css`
background-color: black;
color: white;
`}
`;
Global style 적용
Emotion의 Global을 사용하여 reset할 style울 지정할 수 있다.
import { css, Global } from "@emotion/react";
const GlobalStyle = css`
body {
background-color: #f8f9fa;
}
`;
const Home = () => {
return (
<div>
<Global styles={GlobalStyle} />
</div>
);
};
export default Home;
'React' 카테고리의 다른 글
[React] useEffect, useLayoutEffect (0) | 2022.09.27 |
---|---|
[React] 클릭 시 원하는 컴포넌트로 스크롤 이동 (0) | 2022.08.20 |
[React] 아이폰 HEIC 이미지 JPEG로 변환 (0) | 2022.07.08 |
[React] 이미지 업로드 시 이미지 압축 (0) | 2022.07.06 |
[Redux] Redux-Persist (0) | 2022.06.27 |
Comments