Skip to content

Commit

Permalink
Merge pull request #1941 from GluuFederation/admin-ui-issue-1940
Browse files Browse the repository at this point in the history
fix(admin-ui): Dashboard layout system status section overlapping acc…
  • Loading branch information
duttarnab authored Dec 30, 2024
2 parents db2fda9 + 97e49e7 commit 48643d6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions admin-ui/app/routes/Dashboards/DashboardPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,8 @@ function DashboardPage() {
canShow={hasBoth(permissions, STAT_READ, STAT_JANS_READ)}
>
<div className={classes.root}>
<Grid container className="px-40" spacing={2}>
<Grid container className="px-40 h-100" spacing={2}>

<Grid item lg={3} md={12} xs={12} height="auto">
<div
className={classes.userInfoTitle}
Expand Down Expand Up @@ -331,7 +332,7 @@ function DashboardPage() {
</div>
</Grid>

<Grid item lg={5} md={12} xs={12} height={{ lg: "55vh", xs: "65vh", ms:"65vh", sm:"65vh" }}>
<Grid item lg={5} md={12} xs={12}>
{StatusCard}
</Grid>

Expand Down Expand Up @@ -395,6 +396,7 @@ function DashboardPage() {
</Grid>
</Paper>
</Grid>

</Grid>

<Grid container className={`px-40`}>
Expand Down Expand Up @@ -443,6 +445,7 @@ function DashboardPage() {
)}
</Grid>
</Grid>

<Grid container className={`${classes.flex} px-40`}>
<Grid xs={12} item>
<Grid
Expand Down
2 changes: 1 addition & 1 deletion admin-ui/app/routes/Dashboards/styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -166,8 +166,8 @@ const styles = makeStyles()({
textOrientation: "upright",
},
statusContainer: {
height: 330,
minWidth: 320,
height: "100%",
color: "#303641",
display: "block",
},
Expand Down

0 comments on commit 48643d6

Please sign in to comment.