From 28d62aeed76c9ea6125f240bc0d44b4db6f04739 Mon Sep 17 00:00:00 2001 From: Ryan Wang Date: Wed, 30 Aug 2023 22:24:12 -0500 Subject: [PATCH] fix: style issue of tabbar component of default type (#4521) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit #### What type of PR is this? /kind bug /area console /milestone 2.9.x #### What this PR does / why we need it: 修复 Console 端 Tabbar 组件默认类型的样式问题。 before: image after: image #### Does this PR introduce a user-facing change? ```release-note 修复 Console 端 Tabbar 组件默认类型的样式问题。 ``` --- console/packages/components/src/components/tabs/Tabbar.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/console/packages/components/src/components/tabs/Tabbar.vue b/console/packages/components/src/components/tabs/Tabbar.vue index 3e0e8451b..aa66d29f4 100644 --- a/console/packages/components/src/components/tabs/Tabbar.vue +++ b/console/packages/components/src/components/tabs/Tabbar.vue @@ -136,7 +136,7 @@ onUnmounted(() => { @apply border-b-gray-100; .tabbar-items { - margin-bottom: -2px; + margin-bottom: -4px; justify-content: flex-start; }