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 (
-