minimum height on klokje

This commit is contained in:
2025-08-21 19:53:28 +02:00
parent 6b6da07ddf
commit 51697622a7
+1 -1
View File
@@ -331,7 +331,7 @@ export default function Lobby() {
<div className="flex w-full items-start justify-between text-center"> <div className="flex w-full items-start justify-between text-center">
<div className="flex-1"></div> <div className="flex-1"></div>
<div className="flex-1"></div> <div className="flex-1"></div>
<div className="flex flex-1 items-center justify-center"> <div className="flex min-h-[170px] flex-1 items-center justify-center">
{(state == "playing" || state == "waiting") && ( {(state == "playing" || state == "waiting") && (
<div <div
className={`flex h-[170px] w-[170px] items-center justify-center rounded-full border-2 ${state == "playing" ? "bg-orange-400" : ""} ${state == "waiting" ? "bg-green-400" : ""}`} className={`flex h-[170px] w-[170px] items-center justify-center rounded-full border-2 ${state == "playing" ? "bg-orange-400" : ""} ${state == "waiting" ? "bg-green-400" : ""}`}