Skip to content

Commit 04dfe53

Browse files
committed
Change Flexbox Dimensions
1 parent 9867aab commit 04dfe53

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

app/components/Applications.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ const Applications = () => {
4545
textAlign: 'center',
4646
color: 'rgba(33, 34, 41, 1.2)',
4747
fontWeight: 700,
48-
fontSize: '3rem',
48+
fontSize: '1rem',
4949
whiteSpace: 'nowrap',
5050
backgroundColor: 'rgba(33, 34, 41, 0.2)',
5151
border: '3px ridge #808080',
@@ -73,7 +73,7 @@ const Applications = () => {
7373
return (
7474
<>
7575
{applications.map((app: string, i: number | any | string | undefined) => (
76-
<Grid item xs={12} lg={6} key={i}>
76+
<Grid item lg={4} md={6} sm={12} key={i}>
7777
<div id="card-hover">
7878
<Card
7979
className={classes.paper}

app/components/Occupied.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const Occupied: React.FC = () => {
1111

1212
const useStyles = makeStyles(theme => ({
1313
paper: {
14-
color: 'rgba(33, 34, 41, 0.7)',
14+
color: 'rgba(33, 34, 41, 0.75)',
1515
height: 340,
1616
width: '100%',
1717
backgroundColor: 'rgba(33, 34, 41, 0.2)',
@@ -24,7 +24,7 @@ const Occupied: React.FC = () => {
2424
},
2525
grid: {
2626
margin: '0 auto',
27-
maxWidth: '50vw',
27+
maxWidth: '65vw',
2828
maxHeight: '75vh',
2929
},
3030
icon: {
@@ -58,7 +58,7 @@ const Occupied: React.FC = () => {
5858
<AddModal setOpen={setOpen} />
5959
</Modal>
6060
<Grid className={classes.grid} container spacing={3}>
61-
<Grid item xs={12} lg={6}>
61+
<Grid item lg={4} md={6} sm={12}>
6262
<Button className={classes.paper} onClick={() => setOpen(true)}>
6363
<AddCircleOutlineTwoToneIcon className={classes.icon} />
6464
</Button>

0 commit comments

Comments
 (0)