Fix safety page on mobile

This commit is contained in:
2022-07-03 23:51:35 +03:00
parent b81c26df25
commit 7d32d9c7db
3 changed files with 19 additions and 5 deletions

View File

@@ -1,7 +1,14 @@
.safetyPage {
margin-bottom: 4rem;
max-width: 80%;
}
.safetyList {
text-align: left;
}
@media screen and (min-width: 768px) {
.safetyPage {
max-width: 35rem;
}
}

View File

@@ -25,4 +25,11 @@ main {
h1 {
font-size: 5rem;
word-wrap: break-word;
}
@media (max-width: 768px) {
h1 {
font-size: 3rem;
}
}