FIX: script options modal issue #625 (#626)

This commit is contained in:
Aleksei Bezrodnov
2023-06-17 23:58:56 +02:00
committed by GitHub
parent c2dacedcb3
commit 709875d9ca
4 changed files with 185 additions and 218 deletions
+15 -13
View File
@@ -79,19 +79,21 @@ import { useRerender } from "./React/hooks";
const htmlLocation = location;
const useStyles = makeStyles((theme: Theme) =>
createStyles({
root: {
"-ms-overflow-style": "none" /* for Internet Explorer, Edge */,
"scrollbar-width": "none" /* for Firefox */,
margin: theme.spacing(0),
flexGrow: 1,
padding: "8px",
minHeight: "100vh",
boxSizing: "border-box",
width: "1px",
},
}),
const useStyles = makeStyles(
(theme: Theme) =>
createStyles({
root: {
"-ms-overflow-style": "none" /* for Internet Explorer, Edge */,
"scrollbar-width": "none" /* for Firefox */,
margin: theme.spacing(0),
flexGrow: 1,
padding: "8px",
minHeight: "100vh",
boxSizing: "border-box",
width: "1px",
},
}),
{ name: "GameRoot" },
);
const uninitialized = (): void => {