fix(catalog): fix responsiveness for catalog entity in nfs

Signed-off-by: Stephen Glass <stephen@stephen.glass>
This commit is contained in:
Stephen Glass
2025-11-13 23:10:10 -05:00
parent ec1a979e27
commit a87c0a5ab6
2 changed files with 12 additions and 3 deletions
@@ -52,7 +52,7 @@ const useStyles = makeStyles<
infoArea: {
display: 'flex',
flexFlow: 'column nowrap',
alignItems: 'flex-start',
alignItems: 'stretch',
gap: theme.spacing(3),
minWidth: 0,
'& > *': {
@@ -62,10 +62,11 @@ const useStyles = makeStyles<
},
summaryArea: {
minWidth: 0,
margin: theme.spacing(1.5), // To counteract MUI negative grid margin
margin: theme.spacing(1), // To counteract MUI negative grid margin
},
summaryCard: {
flex: '0 0 auto',
width: '100%',
'& + &': {
marginLeft: theme.spacing(3),
},
@@ -96,7 +97,7 @@ const useStyles = makeStyles<
},
summaryArea: {
gridArea: 'summary',
marginBottom: theme.spacing(3),
margin: theme.spacing(1), // To counteract MUI negative grid margin
},
infoArea: {
gridArea: 'info',
@@ -117,6 +118,9 @@ const useStyles = makeStyles<
display: 'none',
},
},
summaryCard: {
width: 'auto',
},
},
}));