Skip to content

Commit

Permalink
Merge pull request #1513 from afwillia/SWC-7222
Browse files Browse the repository at this point in the history
SWC-7222 Fix mobile Access Action Required tab in Download Car
  • Loading branch information
afwillia authored Jan 24, 2025
2 parents 4f592a1 + 464d362 commit 8812651
Showing 1 changed file with 4 additions and 1 deletion.
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 Expand Up @@ -68,7 +71,7 @@ export function LoadingActionRequiredCard() {
<ActionRequiredCardContainer>
<Skeleton variant="rectangular" width={136} height={74} />
<div>
<Skeleton width={320} />
<Skeleton width={250} />
<Skeleton width={100} />
</div>
<Skeleton variant="rectangular" width={160} height={33} />
Expand Down

0 comments on commit 8812651

Please sign in to comment.