Skip to content

Commit

Permalink
Make the ActionRequiredCardContainer a single column on mobile to pre…
Browse files Browse the repository at this point in the history
…vent horizontal overflow
  • Loading branch information
afwillia committed Jan 23, 2025
1 parent 25ccde8 commit 106076b
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ const ActionRequiredCardContainer: StyledComponent<PaperProps> = styled(Paper, {
alignItems: 'center',
gridTemplateColumns: '160px auto 200px',
gap: theme.spacing(4),
[theme.breakpoints.down('sm')]: {
gridTemplateColumns: '1fr', // Single column layout for mobile
},
}))

/**
Expand Down

0 comments on commit 106076b

Please sign in to comment.