We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2c03f3 commit 597af1aCopy full SHA for 597af1a
1 file changed
src/custom/DashboardWidgets/GettingStartedWidget/ActionButtonCard.tsx
@@ -55,11 +55,11 @@ const ContentWrapper = styled(Box)({
55
flexDirection: 'column'
56
});
57
58
-const DescriptionTypography = styled(Typography)<{ maxWidth?: string }>(({ maxWidth }) => ({
59
- marginLeft: 8,
60
- marginBottom: 8,
+const DescriptionTypography = styled(Typography)<{ maxWidth?: string }>(({ theme, maxWidth }) => ({
+ marginLeft: theme.spacing(1),
+ marginBottom: theme.spacing(1),
61
minHeight: '4.5rem',
62
- '@media (min-width: 475px) and (max-width: 1200px)': {
+ [theme.breakpoints.between('sm', 'lg')]: {
63
maxWidth: maxWidth || '100%'
64
}
65
}));
0 commit comments