Fix appearance on mobile devices

This commit is contained in:
Tito Sacchi 2021-11-17 18:03:50 +01:00
parent d0cb742c04
commit bac1a26e2d
1 changed files with 9 additions and 1 deletions

View File

@ -16,11 +16,19 @@ html {
body {
font-family: 'Montserrat', sans-serif;
font-size: 14pt;
@media (max-width: 768px) {
font-size: 12pt;
}
}
.container {
padding: 30px 60px 30px 60px;
max-width: 800px;
max-width: 850px;
@media (max-width: 768px) {
padding: 20px 10px 20px 10px;
}
.row {
justify-content: center !important;