From 590041ed8bf12b639a3f9cb55dd947929eafe9f7 Mon Sep 17 00:00:00 2001 From: hanseulhee <3021062@gmail.com> Date: Fri, 10 May 2024 17:53:34 +0900 Subject: [PATCH] =?UTF-8?q?[#4]=20extraBold=20=EC=86=8D=EC=84=B1=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80=20=EB=B0=8F=20=EC=A0=81=EC=9A=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/common/button/AddButton.tsx | 2 +- src/styles/theme.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/common/button/AddButton.tsx b/src/components/common/button/AddButton.tsx index b267da8..deb0642 100644 --- a/src/components/common/button/AddButton.tsx +++ b/src/components/common/button/AddButton.tsx @@ -34,6 +34,6 @@ const StyledWrapper = styled.button` border-radius: 15px; font-size: 0.95rem; - font-weight: ${theme.fontWeight.bold}; + font-weight: ${theme.fontWeight.extraBold}; cursor: pointer; ` diff --git a/src/styles/theme.ts b/src/styles/theme.ts index 272de81..67273de 100644 --- a/src/styles/theme.ts +++ b/src/styles/theme.ts @@ -14,6 +14,7 @@ export const theme = { light: 300, normal: 500, bold: 700, + extraBold: 900, }, } as const