Skip to content

Commit

Permalink
Merge pull request #29 from CS3219-AY2425S1/frontend/stylings
Browse files Browse the repository at this point in the history
Fix stylings for question-list
  • Loading branch information
kervyntan authored Oct 6, 2024
2 parents 0087482 + 8cd11b4 commit 5c74b0e
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 17 deletions.
5 changes: 2 additions & 3 deletions peer-prep-fe/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1,13 +1,22 @@
.tourney-title {
color: white;
font-size: 60px;
margin-top: 5vh;
margin-bottom: 40px;
font-family: "Tourney", sans-serif;
font-optical-sizing: auto;
font-weight: 300;
font-style: normal;
text-align: center;
}

.question-list {
max-height: 600px;
overflow-y: auto;
margin-top: 20px;
margin-top: 5vh;
display: flex;
justify-content: center;
align-items: center;
}

.question-list::-webkit-scrollbar {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
/* Fix flex layout only for specific elements */
.container {
display: flex;
align-items: center;
align-items: center;
justify-content: center;
}

.search-container {
Expand Down
13 changes: 1 addition & 12 deletions peer-prep-fe/src/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ html, body {
font-family: "Signika Negative", sans-serif;
color: #A4A4A4;
overflow: hidden;
}
}

.upper-half {
display: flex;
Expand Down Expand Up @@ -93,17 +93,6 @@ html, body {
}


.tourney-title {
font-family: "Tourney", sans-serif;
font-optical-sizing: auto;
font-weight: 300;
font-style: normal;
font-variation-settings:
"wdth" 100;
text-align: center;
}





Expand Down

0 comments on commit 5c74b0e

Please sign in to comment.