From 4995a94fc2c44b440ffd66ae30f237cfa33eca86 Mon Sep 17 00:00:00 2001 From: minsoo-web Date: Sun, 15 Sep 2024 20:35:01 +0900 Subject: [PATCH] =?UTF-8?q?hotfix:=20header=20=EB=86=92=EC=9D=B4=EA=B0=80?= =?UTF-8?q?=2084=20=EA=B0=80=20=EC=95=84=EB=8B=88=EA=B2=8C=20=EB=90=98?= =?UTF-8?q?=EC=96=B4=EB=B2=84=EB=A6=B0=20=EC=9D=B4=EC=8A=88=20=EB=8C=80?= =?UTF-8?q?=EC=9D=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/home/app/layout.tsx | 4 +++- apps/wiki/app/layout.tsx | 2 +- packages/ui/tailwind.config.ts | 4 +++- web/app/_shared/components/GlobalNavigationBar.tsx | 2 +- web/app/_shared/constants/styles.ts | 2 +- 5 files changed, 9 insertions(+), 5 deletions(-) diff --git a/apps/home/app/layout.tsx b/apps/home/app/layout.tsx index f0ab4d2..0122b11 100644 --- a/apps/home/app/layout.tsx +++ b/apps/home/app/layout.tsx @@ -33,7 +33,9 @@ export default function RootLayout({ children }: PropsWithChildren): JSX.Element return ( - {children} +
+ {children} +
) diff --git a/apps/wiki/app/layout.tsx b/apps/wiki/app/layout.tsx index d9252b3..d1eca8b 100644 --- a/apps/wiki/app/layout.tsx +++ b/apps/wiki/app/layout.tsx @@ -45,7 +45,7 @@ export default function RootLayout({ children }: PropsWithChildren): JSX.Element return ( -
+
{children} diff --git a/packages/ui/tailwind.config.ts b/packages/ui/tailwind.config.ts index 8faaf59..cf952f5 100644 --- a/packages/ui/tailwind.config.ts +++ b/packages/ui/tailwind.config.ts @@ -26,7 +26,9 @@ const config = { extend: { height: { 'iframe-height': 'calc(100vh - 84px)', - 'iframe-height-mobile': 'calc(100vh - 108px)', + }, + padding: { + 'iframe-padding': '1.5rem', }, colors: { border: 'hsl(var(--border))', diff --git a/web/app/_shared/components/GlobalNavigationBar.tsx b/web/app/_shared/components/GlobalNavigationBar.tsx index 563c932..ef0cc7e 100644 --- a/web/app/_shared/components/GlobalNavigationBar.tsx +++ b/web/app/_shared/components/GlobalNavigationBar.tsx @@ -10,7 +10,7 @@ import type { MouseEventHandler, PropsWithChildren } from 'react' export const GlobalNavigationBar = () => { return ( -