fix : analysis card padding

This commit is contained in:
GuillaumeSD
2025-06-08 17:32:33 +02:00
parent 6310f7a375
commit 3128c7b882
2 changed files with 7 additions and 1 deletions

View File

@@ -34,6 +34,11 @@ if (
"Fetch is aborted",
"The operation was aborted.",
"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",
],
});
}

View File

@@ -28,12 +28,13 @@ export default function AnalysisTab(props: GridProps) {
return (
<Grid
container
size={{ xs: 12, lg: gameEval ? 11 : 12 }}
size={12}
justifyContent={{ xs: "center", lg: gameEval ? "start" : "center" }}
alignItems="center"
flexWrap={{ lg: gameEval ? "nowrap" : undefined }}
gap={2}
marginY={{ lg: gameEval ? 1 : undefined }}
paddingX={{ xs: 0, lg: "calc(4% - 2rem)" }}
{...props}
sx={props.hidden ? { display: "none" } : props.sx}
>