diff --git a/src/client/components/ToggleInputCard.ts b/src/client/components/ToggleInputCard.ts index 279366aff..6628ea0be 100644 --- a/src/client/components/ToggleInputCard.ts +++ b/src/client/components/ToggleInputCard.ts @@ -12,7 +12,7 @@ const CARD_LABEL_CLASS = "text-xs uppercase font-bold tracking-wider leading-tight break-words hyphens-auto"; function cardClass(active: boolean, extra = ""): string { - return `w-full rounded-xl border cursor-pointer transition-all duration-200 active:scale-95 ${extra} ${active ? ACTIVE_CARD : INACTIVE_CARD}`; + return `w-full h-full rounded-xl border cursor-pointer transition-all duration-200 active:scale-95 ${extra} ${active ? ACTIVE_CARD : INACTIVE_CARD}`; } @customElement("toggle-input-card")