Skip to content

Commit

Permalink
chore: css layout
Browse files Browse the repository at this point in the history
  • Loading branch information
dadiorchen committed Dec 18, 2021
1 parent 243d498 commit cf48b04
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
3 changes: 3 additions & 0 deletions src/components/Home/Home.styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,9 @@ const styles = (theme) => ({
statCardGrid: {
padding: 0,
flexWrap: 'wrap',
'&>div': {
minWidth: '336px',
},
},
});

Expand Down
6 changes: 5 additions & 1 deletion src/components/reportingCards/ReportingCard.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ const style = (theme) => ({
backgroundColor: 'white',
padding: theme.spacing(4, 6),
minHeight: theme.spacing(74),
minWidth: theme.spacing(79),
//minWidth: theme.spacing(79),
maxWidth: '100%',
display: 'flex',
flexDirection: 'column',
justifyContent: 'space-between',
Expand Down Expand Up @@ -119,6 +120,9 @@ const style = (theme) => ({
maxHeight: 600,
overflow: 'auto',
},
name: {
marginRight: theme.spacing(12),
},
});

function GrowerReportingCard(props) {
Expand Down

0 comments on commit cf48b04

Please sign in to comment.