From 7e450104879e3373be9264258af9a3244fce6a95 Mon Sep 17 00:00:00 2001 From: cfngc4594 Date: Thu, 8 May 2025 11:27:10 +0800 Subject: [PATCH] fix(styles): adjust tabs overflow container height in abyss theme Changed height property from 'unset !important' to '100%' for .dv-tabs-overflow-container and .dv-tabs-overflow-dropdown-default in the abyss-spaced theme to fix layout issues. --- src/styles/dockview.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/styles/dockview.css b/src/styles/dockview.css index f2fb0c8..fdc1da3 100644 --- a/src/styles/dockview.css +++ b/src/styles/dockview.css @@ -111,7 +111,8 @@ .dockview-theme-abyss-spaced .dv-tabs-overflow-container, .dockview-theme-abyss-spaced .dv-tabs-overflow-dropdown-default { border-radius: 8px; - height: unset !important; + /* height: unset !important; */ + height: 100%; } .dockview-theme-abyss-spaced .dv-tab {