fix: sidebar header height (#5183)

pull/60/MERGE
Netfan 2024-12-19 11:45:32 +08:00 committed by GitHub
parent 85cbb3b842
commit 1853ba1d60
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

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