Skip to content

Commit 45867c3

Browse files
Use spacing instead of gap as media players in some OS doesn't work.
1 parent 011eca2 commit 45867c3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/apps/dashboard/features/metrics/components/MetricCard.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ const MetricCard: FC<MetricCardProps> = ({
3535
>
3636
<Stack
3737
direction='row'
38+
spacing={2}
3839
sx={{
3940
width: '100%',
4041
padding: 2,
4142
justifyContent: 'space-between',
42-
alignItems: 'center',
43-
gap: '20px'
43+
alignItems: 'center'
4444
}}
4545
>
4646
{metrics.map(({ label, value }) => (

0 commit comments

Comments
 (0)