반응형
장점
- 기존 css파일에서는 변수(ex)브랜드 컬러를 저장한 변수)를 불러오지 못하는데 GlobalStyle은 확장자가 js이기에 변수를 불러올 수 있다.
1. {이름}.style.js 만들기
2. 그 안에서 아래 사진처럼 원하는 전역 스타일 작성하기
3. 사용할 땐 최상단에서 호출해준다.
실제 사용하는 코드
import { createGlobalStyle } from 'styled-components';
export const GlobalStyle = createGlobalStyle`
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
button,
output,
ruby,
section,
summary,
time,
mark,
audio,
textarea,
input,
video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
font-family: 'KCCChassam';
vertical-align: baseline;
box-sizing: border-box;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
display: block;
}
body {
line-height: 1;
}
ol,
ul {
list-style: none;
}
blockquote,
q {
quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
`;
반응형
'Frontend' 카테고리의 다른 글
Next.js app router API Routes를 활용한 주문형 재검증 (0) | 2024.08.01 |
---|---|
디바운싱과 쓰로틀링 (0) | 2022.11.26 |
Next.js 쓰면 SSR 하고 있는거 아님? (2) | 2022.11.18 |
프론트엔드 면접 경험 (0) | 2022.11.16 |
[JS] this란? (0) | 2022.08.23 |