fix: sidebar header height (#5183)

This commit is contained in:
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

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