diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 517c10db..8284b887 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -14,7 +14,7 @@ const RootLayout = ({ children }: { children: ReactNode }) => { -
+
{children}
diff --git a/src/v1/base/TopNavigation.tsx b/src/v1/base/TopNavigation.tsx index 70ea5e41..342e149d 100644 --- a/src/v1/base/TopNavigation.tsx +++ b/src/v1/base/TopNavigation.tsx @@ -8,7 +8,7 @@ type ItemProps = TopNavigationProps; const TopNavigation = ({ children }: TopNavigationProps) => { return ( -
+
{children}
); @@ -16,7 +16,7 @@ const TopNavigation = ({ children }: TopNavigationProps) => { const LeftItem = ({ children }: ItemProps) => { return ( -
+
{children}
); @@ -38,7 +38,7 @@ const CenterItem = ({ children, textAlign = 'center' }: CenterItemProps) => { const RightItem = ({ children }: ItemProps) => { return ( -
+
{children}
); diff --git a/src/v1/layout/Layout.tsx b/src/v1/layout/Layout.tsx index be16dd00..20f18aad 100644 --- a/src/v1/layout/Layout.tsx +++ b/src/v1/layout/Layout.tsx @@ -19,7 +19,9 @@ const Layout = ({ children }: LayoutProps) => { const pathname = usePathname(); const isRootPath = pathname && rootPaths.includes(pathname); - const dynamicClass = isRootPath ? 'pb-[6.4rem] pt-[2rem]' : 'py-[2rem]'; + const dynamicClass = isRootPath + ? 'pb-[6.4rem] pt-[2rem]' + : 'pt-[5.4rem] pb-[2rem]'; return ( <>