Skip to content

Commit

Permalink
Merge pull request #53 from ecss-soton/committee-appearance-fix
Browse files Browse the repository at this point in the history
committee should look good on mobile now, still need to do dark mode
  • Loading branch information
casperUoS authored Sep 4, 2024
2 parents 186b6ec + 84d2f1c commit 0bd9247
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/app/_components/CollectionArchive/index.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
grid-column-end: span 4;

@include large-break {
grid-column-end: span 4;
grid-column-end: span 6;
}

@include mid-break {
Expand Down
46 changes: 38 additions & 8 deletions src/app/_components/CommitteeItem/index.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,9 @@
position: relative;
flex-direction: column;

@include small-break {
max-width: 500px;
max-height: 270px;
}
// @include small-break {
// padding-right: 30%;
// }
}

.rectangle {
Expand All @@ -29,9 +28,19 @@
position: absolute;
left: 23%;
z-index: -1;
padding-left: 12%;
padding-left: 15%;
padding-top: 12%;
padding-right: 1%;

@include small-break {
left: 13%;
padding-left: 9%;
padding-top: 5%;
padding-right: 1%;
height: 100%;
width: 50%;
}

}

.vertical {
Expand Down Expand Up @@ -76,6 +85,11 @@
text-align: center;
line-height: 104%;
margin: 0px;

@include small-break {
height: 50%;
width: 100%;
}
}

.firstName {
Expand All @@ -84,12 +98,16 @@
font-size: max(2.3vw, 25px);
line-height: 104%;

@include large-break {
font-size: 3.5vw;
}

@include mid-break {
font-size: 4.4vw;
}

@include small-break {
font-size: min(44px,8vw);
font-size: max(35px,6vw);
}
}

Expand All @@ -100,12 +118,16 @@
font-size: max(2.3vw, 25px);
line-height: 104%;

@include large-break {
font-size: 3.5vw;
}

@include mid-break {
font-size: 4.4vw;
}

@include small-break {
font-size: min(44px,8vw);
font-size: max(35px,6vw);
}
}

Expand All @@ -119,12 +141,16 @@
position: relative;
top: 15px;

@include large-break {
font-size: 1.7vw;
}

@include mid-break {
font-size: 2.2vw;
}

@include small-break {
font-size: min(22px,4vw);
font-size: max(17px,3vw);
}
}

Expand Down Expand Up @@ -171,6 +197,10 @@
flex-shrink: 1;
height: 100%;
padding-right: 60%;

@include small-break {
padding-right: 80%;
}
}

.profileImage {
Expand Down

0 comments on commit 0bd9247

Please sign in to comment.