From 4e6ed361c701162b662ef4194eaacad5718e926e Mon Sep 17 00:00:00 2001 From: pany <939630029@qq.com> Date: Tue, 21 May 2024 10:10:15 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=A7=A3=E5=86=B3=E5=BC=80=E5=90=AF=20"?= =?UTF-8?q?=E5=9B=BA=E5=AE=9A=20Header"=20=E6=97=B6=E5=87=BA=E7=8E=B0=201p?= =?UTF-8?q?x=20=E6=BB=9A=E5=8A=A8=E6=9D=A1=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/styles/variables.css | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/styles/variables.css b/src/styles/variables.css index d97caca5..9f0caf3c 100644 --- a/src/styles/variables.css +++ b/src/styles/variables.css @@ -5,10 +5,13 @@ --v3-body-text-color: var(--el-text-color-primary); --v3-body-bg-color: var(--el-bg-color-page); /** Header 区域 = NavigationBar 组件 + TagsView 组件 */ - --v3-header-height: calc(var(--v3-navigationbar-height) + var(--v3-tagsview-height)); + --v3-header-height: calc( + var(--v3-navigationbar-height) + var(--v3-tagsview-height) + var(--v3-header-border-bottom-width) + ); --v3-header-bg-color: var(--el-bg-color); --v3-header-box-shadow: var(--el-box-shadow-lighter); - --v3-header-border-bottom: 1px solid var(--el-fill-color); + --v3-header-border-bottom-width: 1px; + --v3-header-border-bottom: var(--v3-header-border-bottom-width) solid var(--el-fill-color); /** NavigationBar 组件 */ --v3-navigationbar-height: 50px; --v3-navigationbar-text-color: var(--el-text-color-regular);