fix : analysis card padding
This commit is contained in:
@@ -34,6 +34,11 @@ if (
|
|||||||
"Fetch is aborted",
|
"Fetch is aborted",
|
||||||
"The operation was aborted.",
|
"The operation was aborted.",
|
||||||
"AbortError: AbortError",
|
"AbortError: AbortError",
|
||||||
|
"TypeError: Load failed",
|
||||||
|
"RangeError: Out of memory",
|
||||||
|
"RuntimeError: Out of bounds memory access (evaluating 'n.apply(null,arguments)')",
|
||||||
|
"Uncaught RuntimeError: Aborted(CompileError: WebAssembly.instantiate():",
|
||||||
|
"Uncaught RangeError: WebAssembly.Memory(): could not allocate memory",
|
||||||
],
|
],
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -28,12 +28,13 @@ export default function AnalysisTab(props: GridProps) {
|
|||||||
return (
|
return (
|
||||||
<Grid
|
<Grid
|
||||||
container
|
container
|
||||||
size={{ xs: 12, lg: gameEval ? 11 : 12 }}
|
size={12}
|
||||||
justifyContent={{ xs: "center", lg: gameEval ? "start" : "center" }}
|
justifyContent={{ xs: "center", lg: gameEval ? "start" : "center" }}
|
||||||
alignItems="center"
|
alignItems="center"
|
||||||
flexWrap={{ lg: gameEval ? "nowrap" : undefined }}
|
flexWrap={{ lg: gameEval ? "nowrap" : undefined }}
|
||||||
gap={2}
|
gap={2}
|
||||||
marginY={{ lg: gameEval ? 1 : undefined }}
|
marginY={{ lg: gameEval ? 1 : undefined }}
|
||||||
|
paddingX={{ xs: 0, lg: "calc(4% - 2rem)" }}
|
||||||
{...props}
|
{...props}
|
||||||
sx={props.hidden ? { display: "none" } : props.sx}
|
sx={props.hidden ? { display: "none" } : props.sx}
|
||||||
>
|
>
|
||||||
|
|||||||
Reference in New Issue
Block a user