From 87afac8aa1821ea14746b5ec132fb318d220a130 Mon Sep 17 00:00:00 2001 From: Buyeon Hwang Date: Sat, 31 Aug 2024 19:46:36 +0900 Subject: [PATCH 1/2] =?UTF-8?q?feat:=20=EB=B0=B1=EA=B7=B8=EB=9D=BC?= =?UTF-8?q?=EC=9A=B4=EB=93=9C=20=EC=BB=AC=EB=9F=AC=20=EB=B3=80=EA=B2=BD=20?= =?UTF-8?q?=EB=B0=8F=20=EA=B2=A9=EC=9E=90=ED=8C=A8=ED=84=B4=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/styles/global.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/styles/global.ts b/src/styles/global.ts index 668441b..c2f4d71 100644 --- a/src/styles/global.ts +++ b/src/styles/global.ts @@ -13,6 +13,10 @@ export const GlobalStyle = css` padding: 0; border: 0; font-family: "NanumSquareNeo", sans-serif; + + background: + linear-gradient(to bottom, transparent 39px, #dcfcf9 39px) 0 0 / 100vw 40px repeat-y, + linear-gradient(to right, transparent 39px, #dcfcf9 39px) 0 0 / 40px 100vh repeat-x #f6f9ff; } img { From 2a571c16dbcd44aa25139280cabae40145c285cd Mon Sep 17 00:00:00 2001 From: Buyeon Hwang Date: Sat, 31 Aug 2024 22:34:24 +0900 Subject: [PATCH 2/2] =?UTF-8?q?fix:=20Topbar=20background=20color=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/layout/TopBar.styled.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/layout/TopBar.styled.tsx b/src/components/layout/TopBar.styled.tsx index b82e298..f463ff3 100644 --- a/src/components/layout/TopBar.styled.tsx +++ b/src/components/layout/TopBar.styled.tsx @@ -17,4 +17,5 @@ export const TopBarContainer = styled.div` border-bottom: 1px solid #e0e0e0; font-weight: 800; + background-color: var(--color-background); `;