Browse Source

fix: sidebar header height (#5183)

pull/5185/head
Netfan 1 year ago
committed by GitHub
parent
commit
1853ba1d60
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      packages/@core/ui-kit/layout-ui/src/components/layout-sidebar.vue

2
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,
};
});

Loading…
Cancel
Save