This commit is contained in:
암냥 2025-04-12 11:58:59 +09:00
commit 0c8dab1c10
2 changed files with 7 additions and 1 deletions

View file

@ -60,7 +60,7 @@ export function App() {
}, []);
return (
<div id="fullpage" className="bg-background text-foreground w-full">
<div id="fullpage" className="bg-background text-foreground w-full h-screen max-h-screen">
<div id="top" className="section">
<Top />
</div>

View file

@ -13,3 +13,9 @@
justify-content: center;
align-items: center;
}
@layer base {
body {
@apply min-h-screen m-0 p-0 overflow-hidden;
}
}