fix : analysis panel overflow on safari

This commit is contained in:
GuillaumeSD
2024-04-09 20:34:21 +02:00
parent 5c435a571e
commit 21d0b31013

View File

@@ -44,8 +44,6 @@ export default function GameReport() {
<Grid
container
item
justifyContent="center"
alignItems="center"
borderRadius={2}
border={1}
borderColor={"secondary.main"}
@@ -58,11 +56,19 @@ export default function GameReport() {
boxShadow: "0 2px 10px rgba(0, 0, 0, 0.5)",
}}
padding={2.5}
rowGap={2}
style={{
maxWidth: "1200px",
}}
maxHeight={{ lg: "calc(100vh - 150px)", xs: "900px" }}
display="grid"
>
<Grid
container
item
justifyContent="center"
alignItems="center"
xs={12}
rowGap={2}
maxHeight={{ lg: "calc(98vh - 150px)", xs: "900px" }}
display="grid"
gridTemplateRows="repeat(4, auto) fit-content(100%)"
>
@@ -79,5 +85,6 @@ export default function GameReport() {
{isLgOrGreater ? <ReviewPanelToolBar /> : <ReviewPanelHeader />}
</Grid>
</Grid>
</Grid>
);
}