Skip to content

Commit 6e8192f

Browse files
committed
Adjust Breakpoints; Adjust Themes
1 parent 04dfe53 commit 6e8192f

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

app/components/Applications.tsx

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,6 @@ const Applications = () => {
4444
height: 340,
4545
textAlign: 'center',
4646
color: 'rgba(33, 34, 41, 1.2)',
47-
fontWeight: 700,
48-
fontSize: '1rem',
4947
whiteSpace: 'nowrap',
5048
backgroundColor: 'rgba(33, 34, 41, 0.2)',
5149
border: '3px ridge #808080',
@@ -66,6 +64,12 @@ const Applications = () => {
6664
color: 'rgb(255, 243, 72)',
6765
backgroundColor: 'grey',
6866
},
67+
fontStyles: {
68+
fontSize: '3rem',
69+
[theme.breakpoints.up('lg')]: {
70+
fontSize: '2.75rem',
71+
},
72+
},
6973
}));
7074

7175
const classes = useStyles();
@@ -92,7 +96,7 @@ const Applications = () => {
9296
}
9397
></CardHeader>
9498
<CardContent>
95-
<Typography variant="h2">{app}</Typography>
99+
<Typography className={classes.fontStyles}>{app}</Typography>
96100
</CardContent>
97101
</Card>
98102
</div>

0 commit comments

Comments
 (0)