From 9816c8121ada03c9aba4dd14e5ffc888f421db6b Mon Sep 17 00:00:00 2001 From: llama Date: Sat, 18 Oct 2025 10:09:28 +0800 Subject: [PATCH] limit select menu height to 200px --- ts/lib/components/Popover.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/lib/components/Popover.svelte b/ts/lib/components/Popover.svelte index 03b195c73..39f98ecdc 100644 --- a/ts/lib/components/Popover.svelte +++ b/ts/lib/components/Popover.svelte @@ -84,7 +84,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html padding: var(--popover-padding-block, 6px) var(--popover-padding-inline, 6px); &.scrollable { - max-height: 400px; + max-height: 200px; overflow: hidden auto; }