fix: Adjust footer height for desktop view to improve layout consistency
Some checks failed
GBCI / build (push) Failing after 9m49s
Some checks failed
GBCI / build (push) Failing after 9m49s
This commit is contained in:
parent
a3c37e31ac
commit
4ea61e5579
1 changed files with 1 additions and 1 deletions
|
@ -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 = `
|
||||||
|
|
Loading…
Add table
Reference in a new issue