From 4bd67113c19dd2feb09cf7c5e4dbf96a041d7f24 Mon Sep 17 00:00:00 2001 From: Martin Fournier Date: Tue, 11 Jan 2022 12:58:27 -0500 Subject: [PATCH] Fix root min-height being over 100vh with padding It was causing a very small scrollable content. --- src/ui/GameRoot.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ui/GameRoot.tsx b/src/ui/GameRoot.tsx index bb9354274..dd5633e3c 100644 --- a/src/ui/GameRoot.tsx +++ b/src/ui/GameRoot.tsx @@ -101,6 +101,7 @@ const useStyles = makeStyles((theme: Theme) => display: "block", padding: "8px", minHeight: "100vh", + boxSizing: 'border-box', }, }), );