From ab9c5c544a3ca6f5f2e070b725cbc51c774e68d9 Mon Sep 17 00:00:00 2001 From: Re1nGer <63101847+Re1nGer@users.noreply.github.com> Date: Thu, 28 Mar 2024 08:09:51 +0200 Subject: [PATCH] fix(ui-components): remove border width override from Tabs (#54166) --- tools/ui-components/src/tabs/tabs.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ui-components/src/tabs/tabs.tsx b/tools/ui-components/src/tabs/tabs.tsx index e6ba81348fb..8166d5bc470 100644 --- a/tools/ui-components/src/tabs/tabs.tsx +++ b/tools/ui-components/src/tabs/tabs.tsx @@ -6,7 +6,7 @@ const buttonClassNames = // remove additional border styles after migration const listClassNames = - 'flex mb-0 pl-0 mt-0 border-t-[0px] border-r-[0px] border-l-[0px] border-b-[1px] border-solid border-foreground-quaternary'; + 'flex mb-0 pl-0 mt-0 border-b-[1px] border-solid border-foreground-quaternary'; export const TabsTrigger = React.forwardRef< React.ElementRef,