From 3610869fb04dfa3f3006e2b461c8d24f78ffffe3 Mon Sep 17 00:00:00 2001 From: DoubledConG <49092777+cccoding365@users.noreply.github.com> Date: Fri, 27 Sep 2024 13:44:57 +0800 Subject: [PATCH] fix: fix the file-tabs styles --- src/components/file-tabs/index.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/file-tabs/index.tsx b/src/components/file-tabs/index.tsx index 549f256..d181b6f 100644 --- a/src/components/file-tabs/index.tsx +++ b/src/components/file-tabs/index.tsx @@ -13,7 +13,8 @@ const tabsClassName = css({ const tabsScrollableClassName = css({ padding: '0 $space$2', - overflow: 'auto', + overflowX: 'auto', + overflowY: 'hidden', display: 'flex', flexWrap: 'nowrap', alignItems: 'stretch',