From baafc2de46947f32c7da6a88f41ecaddcf425439 Mon Sep 17 00:00:00 2001 From: Cesar Ferreyra-Mansilla Date: Tue, 6 Aug 2024 14:57:51 -0400 Subject: [PATCH] fix: restore padding under normal chromoscopemode --- src/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.tsx b/src/App.tsx index 106febf3..f9b4f07a 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -59,7 +59,7 @@ function App(props: RouteComponentProps) { const VIS_PADDING = { top: isMinimalMode ? 0 : 60, right: isMinimalMode ? 0 : 60, - bottom: 0, + bottom: isMinimalMode ? 0 : 60, left: isMinimalMode ? 0 : 60 };