fix: Adjust footer height for desktop view to improve layout consistency
Some checks failed
GBCI / build (push) Failing after 9m49s

This commit is contained in:
Rodrigo Rodriguez (Pragmatismo) 2025-06-30 08:56:32 -03:00
parent a3c37e31ac
commit 4ea61e5579

View file

@ -127,7 +127,7 @@ const Footer = ({ className = "", shortcuts }) => {
const getContainerHeight = () => { const getContainerHeight = () => {
if (isMinimized) return 'h-4'; if (isMinimized) return 'h-4';
if (isMaximized) return 'h-screen fixed inset-0 z-50 bg-background'; if (isMaximized) return 'h-screen fixed inset-0 z-50 bg-background';
return isMobile ? 'h-64' : 'h-32'; return isMobile ? 'h-64' : 'h-40';
}; };
const scrollbarStyles = ` const scrollbarStyles = `