Using MUI have two separate grids next to each other, both taking up 50% of a larger grid.
As seen in the image below, I am having a hard time matching the heights of the two sections. I would like the smaller grid items (cards) to dynamically fill in the height of the left portion and match the height of the right portion.
How is this possible with Mui?
Here is my current code:
JavaScript
x
86
86
1
import React from "react";
2
import Grid from "@mui/material/Grid";
3
import Box from "@mui/material/Box";
4
import Card from "@mui/material/Card";
5
import CardContent from "@mui/material/CardContent";
6
import Typography from "@mui/material/Typography";
7
import Chart from "./testChart.js";
8
9
function GeneralDashboard(props) {
10
const defaultStats = [
11
{ name: "Opportunitys Entered", value: 102 },
12
{ name: "Wins Reported", value: 23 },
13
{ name: "Win Rate", value: "60%" },
14
{ name: "Total Revenue", value: "$20m" },
15
];
16
return (
17
<>
18
<Box sx={{ flexGrow: 1 }}>
19
<Grid
20
container
21
spacing={{ xs: 1, sm: 2, lg: 2 }}
22
columns={{ xs: 8, sm: 8, md: 8, lg: 8 }}
23
>
24
<Grid item xs={8} sm={8} md={4} lg={4}>
25
<Box sx={{ flexGrow: 1 }}>
26
<Grid
27
container
28
spacing={{ xs: 1, sm: 2, lg: 2 }}
29
columns={{ xs: 4, sm: 4, md: 8, lg: 8 }}
30
>
31
{defaultStats.map((stat) => {
32
return (
33
<>
34
<Grid item xs={2} sm={4} md={4}>
35
<Card>
36
<CardContent>
37
<Typography
38
sx={{ fontSize: 14 }}
39
color="text.secondary"
40
gutterBottom
41
>
42
{stat.name}
43
</Typography>
44
<Typography variant="h3" component="div">
45
{stat.value}
46
</Typography>
47
</CardContent>
48
</Card>
49
</Grid>
50
</>
51
);
52
})}
53
</Grid>
54
</Box>
55
</Grid>
56
<Grid item xs={8} sm={8} md={4} lg={4}>
57
<Box sx={{ flexGrow: 1 }}>
58
<Grid container spacing={{ xs: 1, sm: 1, lg: 1 }}>
59
<Grid item xs={12}>
60
<Card>
61
<CardContent>
62
<Typography
63
sx={{ fontSize: 14 }}
64
color="text.secondary"
65
gutterBottom
66
>
67
<h5>
68
<span>
69
<span className="fw-semi-bold">Re-entry</span>{" "}
70
timing by industry
71
</span>
72
</h5>
73
</Typography>
74
<Chart />
75
</CardContent>
76
</Card>
77
</Grid>
78
</Grid>
79
</Box>
80
</Grid>
81
</Grid>
82
</Box>
83
</>
84
);
85
}
86
Advertisement
Answer
You need to set the height
of all containers and the item to 100%
:
JavaScript
1
13
13
1
<Box sx={{ flexGrow: 1, height: "100%" /* <----------------------- (1) */ }}>
2
<Grid
3
sx={{ height: "100%" /* <----------------------- (2) */ }}
4
container
5
spacing={{ xs: 1, sm: 2, lg: 2 }}
6
columns={{ xs: 4, sm: 4, md: 8, lg: 8 }}
7
>
8
{defaultStats.map((stat) => {
9
return (
10
<>
11
<Grid item xs={2} sm={4} md={4}>
12
<Card sx={{ height: "100%" /* <----------------------- (3) */ }}>
13