added media query for font size

This commit is contained in:
SilicoFlare
2023-04-02 01:19:48 +05:30
committed by GitHub
parent 75c8e0c42c
commit 7a3f6e43de

View File

@@ -109,10 +109,16 @@ body {
}
main {
font-size: 30px;
font-size: 2.2vw;
padding: 0 2.28vw;
}
@media only screen and (max-width: 1000px) {
main {
font-size: 17.5px;
}
}
.centred {
text-align: center;
}