We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d9f001 commit d2ae145Copy full SHA for d2ae145
frontend/components/navigation/SideNavigation.tsx
@@ -201,7 +201,7 @@ export function SideNavigation({
201
// Calculate sidebar height dynamically based on header and footer reserved heights
202
const headerReservedHeight = parseInt(HEADER_CONFIG.RESERVED_HEIGHT);
203
const footerReservedHeight = parseInt(FOOTER_CONFIG.RESERVED_HEIGHT);
204
- const sidebarHeight = `calc(105vh - ${headerReservedHeight}px - ${footerReservedHeight}px)`;
+ const sidebarHeight = `calc(100vh - ${headerReservedHeight}px - ${footerReservedHeight}px)`;
205
const sidebarTop = `${headerReservedHeight}px`;
206
207
return (
0 commit comments