Skip to content

Commit

Permalink
fix: restore padding under normal chromoscopemode
Browse files Browse the repository at this point in the history
  • Loading branch information
crfmc committed Aug 6, 2024
1 parent 77c1620 commit baafc2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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
};

Expand Down

0 comments on commit baafc2d

Please sign in to comment.