fix: Correct bottom width and height calculations in Panel component and styles

This commit is contained in:
2025-04-09 09:31:22 +05:30
parent 43184a7e25
commit 937241d28b
2 changed files with 4 additions and 4 deletions

View File

@@ -246,7 +246,7 @@ const Panel: React.FC<PanelProps> = ({
// Calculate capacities and dimensions
const topWidth = getPanelStyle("top").width;
const bottomWidth = getPanelStyle("bottom").width;
const bottomWidth = getPanelStyle("bottom").height;
const leftHeight = getPanelStyle("left").height;
const rightHeight = getPanelStyle("right").height;