From d9230d0be835d95c5ef50e72333cc71c019502a3 Mon Sep 17 00:00:00 2001 From: Jose Olarte III Date: Wed, 5 Nov 2025 16:25:06 +0800 Subject: [PATCH] fix: restore proper dialog max-height --- src/assets/styles/tailwind.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/assets/styles/tailwind.css b/src/assets/styles/tailwind.css index f4e5b371..085b8ee3 100644 --- a/src/assets/styles/tailwind.css +++ b/src/assets/styles/tailwind.css @@ -38,7 +38,7 @@ } .dialog { - @apply bg-white px-4 py-6 rounded-lg w-full max-w-lg max-h-[90%] overflow-y-auto; + @apply bg-white px-4 py-6 rounded-lg w-full max-w-lg max-h-[calc(100vh-3rem)] overflow-y-auto; } /* Markdown content styling to restore list elements */