Optimize CSS for mobile devices

This commit is contained in:
Oliver Traber 2022-01-15 17:14:01 +01:00
parent 9edfc61e96
commit 16da1ac25c
Signed by: Bluemedia
GPG key ID: C7BA47275B086E2C
5 changed files with 71 additions and 7 deletions

View file

@ -26,4 +26,12 @@ h2 {
margin: 0;
margin-left: 20px;
}
@media screen and (max-width: 768px) {
.logo {
width: 40px;
}
h2 {
font-size: 1.2rem;
}
}
</style>