summaryrefslogtreecommitdiffhomepage
path: root/src/features/tabs/ui
diff options
context:
space:
mode:
Diffstat (limited to 'src/features/tabs/ui')
-rw-r--r--src/features/tabs/ui/TabList.svelte4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/features/tabs/ui/TabList.svelte b/src/features/tabs/ui/TabList.svelte
index dff2583..6d85065 100644
--- a/src/features/tabs/ui/TabList.svelte
+++ b/src/features/tabs/ui/TabList.svelte
@@ -83,9 +83,9 @@
</script>
<div class="flex flex-col gap-2">
- <!-- Single-column vertical tab list. Fixed at 60% of the viewport height so a
+ <!-- Single-column vertical tab list. Fixed at 40% of the viewport height so a
long tab set scrolls inside this region instead of growing the whole sidebar. -->
- <div class="flex h-[60vh] flex-col gap-1 overflow-y-auto pr-1">
+ <div class="flex h-[40vh] flex-col gap-1 overflow-y-auto pr-1">
{#each tabs as tab (tab.conversationId)}
<div
class="flex items-center gap-1.5 rounded px-2 py-1.5 text-sm hover:bg-base-300"