Fix UI jank a bit

This commit is contained in:
Joey Yakimowich-Payne 2026-01-14 21:47:40 -07:00
commit 3d6081823c
No known key found for this signature in database
GPG key ID: 6BFE655FA5ABD1E1
18 changed files with 193 additions and 87 deletions

View file

@ -137,10 +137,10 @@ function App() {
});
return (
<div className="min-h-screen text-white relative">
<div className="h-screen text-white relative overflow-hidden">
<FloatingShapes />
<div className="relative z-10">
<div className="relative z-10 h-full">
{gameState === 'LANDING' || gameState === 'GENERATING' ? (
<Landing
onGenerate={startQuizGen}
@ -179,6 +179,7 @@ function App() {
role={role}
onStart={startGame}
onEndGame={role === 'HOST' ? endGame : undefined}
currentPlayerId={currentPlayerId}
/>
{auth.isAuthenticated && pendingQuizToSave && (
<SaveQuizPrompt