From cbecf708cff62b480ef14928dec0c2c2c2ada130 Mon Sep 17 00:00:00 2001 From: Debjit Biswas Date: Mon, 2 Dec 2024 07:52:34 +0530 Subject: [PATCH] fix: Fix tips modal height --- src/components/Tips.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Tips.astro b/src/components/Tips.astro index 0b9183f..a3474e2 100644 --- a/src/components/Tips.astro +++ b/src/components/Tips.astro @@ -23,7 +23,7 @@ x-transition:leave="transition ease-out duration-300" x-transition:leave-start="transform scale-100 opacity-100" x-transition:leave-end="transform scale-50 opacity-0" - class="flex flex-col rounded-md shadow-sm overflow-hidden w-2/5 h-2/5 min-w-[300px] z-10 bg-secondary-background text-secondary-foreground border border-primary-border" + class="flex flex-col rounded-md shadow-sm overflow-hidden w-2/5 max-h-4/5 min-w-[300px] z-10 bg-secondary-background text-secondary-foreground border border-primary-border" >

Tip of the Day