Skip to content

Commit d29fcd7

Browse files
committed
Fix Copyright; Fix Grid Response
1 parent 56d8197 commit d29fcd7

4 files changed

Lines changed: 11 additions & 8 deletions

File tree

app/components/Applications.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ const Applications = () => {
6969

7070
return (
7171
<>
72-
{applications.map((app: string[], i: number | any | string | undefined) => (
73-
<Grid item xs={6} key={i}>
72+
{applications.map((app: string, i: number | any | string | undefined) => (
73+
<Grid item xs={12} lg={6} key={i}>
7474
<div id="card-hover">
7575
<Card
7676
className={classes.paper}
@@ -105,3 +105,4 @@ const Applications = () => {
105105
export default Applications;
106106

107107
//name, desc, creation date
108+
// start lighter and becomes darker

app/components/Occupied.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const Occupied: React.FC = () => {
2323
},
2424
grid: {
2525
margin: '0 auto',
26-
maxWidth: '75vw',
26+
maxWidth: '60vw',
2727
maxHeight: '75vh',
2828
},
2929
icon: {
@@ -57,7 +57,7 @@ const Occupied: React.FC = () => {
5757
<AddModal setOpen={setOpen} />
5858
</Modal>
5959
<Grid className={classes.grid} container spacing={3}>
60-
<Grid item xs={6}>
60+
<Grid item xs={12} lg={6}>
6161
<Button className={classes.paper} onClick={() => setOpen(true)}>
6262
<AddCircleOutlineTwoToneIcon className={classes.icon} />
6363
</Button>

app/stylesheets/Applications.css

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@
1313
&:after {
1414
top: -1px;
1515
right: -1px;
16-
border-top: 5px solid black;
17-
border-right: 5px solid black;
16+
border-top: 2px solid white;
17+
border-right: 2px solid white;
1818
}
1919
&:before {
2020
bottom: -1px;
2121
left: -1px;
22-
border-bottom: 5px solid black;
23-
border-left: 5px solid black;
22+
border-bottom: 2px solid white;
23+
border-left: 2px solid white;
2424
}
2525
&:hover {
2626
border-top-right-radius: 0px;

app/stylesheets/MainContainer.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414

1515
.copyright-container {
1616
@include centerWithFlex(center);
17+
position: fixed;
18+
bottom: 0;
1719
width: 100%;
1820
padding: 10px;
1921
}

0 commit comments

Comments
 (0)