From 9af7ac3f68bfb057c3941d13735b57449f8baa91 Mon Sep 17 00:00:00 2001 From: Hibryda Date: Sat, 7 Mar 2026 22:47:06 +0100 Subject: [PATCH] fix(v3): improve theme dropdown sizing and prevent label truncation --- v2/src/lib/components/Workspace/SettingsTab.svelte | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/v2/src/lib/components/Workspace/SettingsTab.svelte b/v2/src/lib/components/Workspace/SettingsTab.svelte index 309d84b..1a4cc3d 100644 --- a/v2/src/lib/components/Workspace/SettingsTab.svelte +++ b/v2/src/lib/components/Workspace/SettingsTab.svelte @@ -326,7 +326,7 @@ .theme-dropdown { position: relative; flex: 1; - min-width: 0; + min-width: 180px; } .theme-trigger { @@ -375,8 +375,8 @@ position: absolute; top: calc(100% + 4px); left: 0; - right: 0; - max-height: 320px; + min-width: 280px; + max-height: 400px; overflow-y: auto; background: var(--ctp-mantle); border: 1px solid var(--ctp-surface1); @@ -422,7 +422,7 @@ .theme-option-label { flex: 1; - min-width: 0; + white-space: nowrap; } .theme-colors {