fix: use svh instead of vh

This commit is contained in:
2024-09-12 22:19:48 +02:00
parent c1da1d7ea2
commit e34f310b0e
3 changed files with 3 additions and 3 deletions

View File

@@ -32,7 +32,7 @@ export const Boot = () => {
}, [setState, line]);
return (
<main className="h-screen w-screen bg-black text-white">
<main className="h-[100svh] w-screen bg-black text-white">
{LINES.filter((_, i) => i <= line).map((line, i) => (
<p key={i}>{line}</p>
))}