Skip to content

Commit d2ae145

Browse files
committed
🐛 Fix sidebar height
1 parent 7d9f001 commit d2ae145

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/components/navigation/SideNavigation.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ export function SideNavigation({
201201
// Calculate sidebar height dynamically based on header and footer reserved heights
202202
const headerReservedHeight = parseInt(HEADER_CONFIG.RESERVED_HEIGHT);
203203
const footerReservedHeight = parseInt(FOOTER_CONFIG.RESERVED_HEIGHT);
204-
const sidebarHeight = `calc(105vh - ${headerReservedHeight}px - ${footerReservedHeight}px)`;
204+
const sidebarHeight = `calc(100vh - ${headerReservedHeight}px - ${footerReservedHeight}px)`;
205205
const sidebarTop = `${headerReservedHeight}px`;
206206

207207
return (

0 commit comments

Comments
 (0)