Make markdown event headings not gignantic (#193)
continuous-integration/drone/push Build is passing Details

Reviewed-on: #193
Reviewed-by: Amy <a258wang@csclub.uwaterloo.ca>
Co-authored-by: Aditya Thakral <a3thakra@csclub.uwaterloo.ca>
Co-committed-by: Aditya Thakral <a3thakra@csclub.uwaterloo.ca>
This commit is contained in:
Aditya Thakral 2021-08-28 16:33:00 -04:00
parent ab040a91e1
commit 1074c22cb5
1 changed files with 14 additions and 0 deletions

View File

@ -49,6 +49,15 @@
display: none;
}
.children h1,
.children h2,
.children h3,
.children h4 {
font-size: 1rem;
margin-top: calc(24rem / 16);
margin-bottom: calc(8rem / 16);
}
@media only screen and (max-width: calc(768rem / 16)) {
.card {
flex-direction: column;
@ -107,6 +116,11 @@
display: none;
}
.children ul,
.children ol {
padding-left: 1rem;
}
.mobileShowDescriptionContent .children {
display: unset;
}