From c0651d58eab19a439b3ab49d4d58fc46049a045a Mon Sep 17 00:00:00 2001 From: JoGeumJu Date: Wed, 1 Feb 2023 04:16:13 +0900 Subject: [PATCH] =?UTF-8?q?[#1]=20=ED=99=98=EA=B2=BD=EC=84=A4=EC=A0=95=20-?= =?UTF-8?q?=20customColor=20=EC=9D=B4=EB=A6=84=EC=98=A4=EB=A5=98=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD=20-=20Layout=EC=9D=98=20flex-direction?= =?UTF-8?q?=EA=B3=BC=20background=20=EC=84=A4=EC=A0=95=20=EB=B3=80?= =?UTF-8?q?=EA=B2=BD=20-=20=EA=B8=80=EA=BC=B4=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/customColor.ts | 6 +++--- src/components/layout/Layout.tsx | 1 + styles/globals.css | 9 +++++++++ 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/src/components/customColor.ts b/src/components/customColor.ts index 05ae1cd..319c2b6 100644 --- a/src/components/customColor.ts +++ b/src/components/customColor.ts @@ -15,9 +15,9 @@ export type customColorType = { export const customColor: customColorType = { white: "#FFFFFF", black: "#000000", - gray: "#999999", - lightGray: "#BCBCBC", - darkGray: "#ECECEC", + darkGray: "#999999", + gray: "#BCBCBC", + lightGray: "#ECECEC", blue: "#91D8F7", blue_: "#BBEFFD48", diff --git a/src/components/layout/Layout.tsx b/src/components/layout/Layout.tsx index d575cae..ee92272 100644 --- a/src/components/layout/Layout.tsx +++ b/src/components/layout/Layout.tsx @@ -24,6 +24,7 @@ const Wrapper = styled.div` const WrapperInner = styled.div` display: flex; + flex-direction: column; width: 1024px; min-height: 100%; background: ${customColor.white}; diff --git a/styles/globals.css b/styles/globals.css index 75947ee..0f21ba4 100644 --- a/styles/globals.css +++ b/styles/globals.css @@ -1,7 +1,16 @@ +@font-face { + font-family: "Pretendard-Regular"; + src: url("https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff") + format("woff"); + font-weight: 400; + font-style: normal; +} + * { box-sizing: border-box; padding: 0; margin: 0; + font-family: "Pretendard-Regular"; } html::-webkit-scrollbar {