fix contact section on narrow screens

This commit is contained in:
Norman Köhring 2024-05-16 23:44:20 +02:00
parent 6f34559c18
commit 3364fa5d3c
2 changed files with 18 additions and 0 deletions

9
dist/style.css vendored
View file

@ -229,4 +229,13 @@ main.posts > header > h1 {
#cta>a {
width: 100%;
}
.contacts {
columns: 2;
}
}
@media (max-width: 480px) {
.contacts {
columns: 1;
}
}

View file

@ -229,4 +229,13 @@ main.posts > header > h1 {
#cta>a {
width: 100%;
}
.contacts {
columns: 2;
}
}
@media (max-width: 480px) {
.contacts {
columns: 1;
}
}