Adjust infil root height so it isn't scrollable

This commit is contained in:
nickofolas 2022-04-30 15:59:31 -05:00
parent 9ea62981de
commit d4f3128829

@ -23,7 +23,7 @@ export function InfiltrationRoot(props: IProps): React.ReactElement {
} }
return ( return (
<div style={{ display: "flex", alignItems: "center", height: "100vh" }}> <div style={{ display: "flex", alignItems: "center", height: "calc(100vh - 16px)" }}>
{start ? ( {start ? (
<Game <Game
StartingDifficulty={startingSecurityLevel} StartingDifficulty={startingSecurityLevel}