Преглед изворни кода

fix: sidebar header height (#5183)

Netfan пре 3 месеци
родитељ
комит
1853ba1d60
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      packages/@core/ui-kit/layout-ui/src/components/layout-sidebar.vue

+ 1 - 1
packages/@core/ui-kit/layout-ui/src/components/layout-sidebar.vue

@@ -166,7 +166,7 @@ const headerStyle = computed((): CSSProperties => {
 
   return {
     ...(isSidebarMixed ? { display: 'flex', justifyContent: 'center' } : {}),
-    height: `${headerHeight}px`,
+    height: `${headerHeight - 1}px`,
     ...contentWidthStyle.value,
   };
 });