1
Fork 0

Switch to grid layout for contact links.

This commit is contained in:
Bauke 2022-03-28 14:25:07 +02:00
parent 55f523fe48
commit 260cb50bb5
Signed by: Bauke
GPG Key ID: C1C0F29952BCF558
1 changed files with 6 additions and 2 deletions

View File

@ -6,9 +6,13 @@
padding: 1rem;
.contact-links {
display: flex;
flex-direction: column;
display: grid;
gap: 1rem;
grid-template-columns: repeat(2, 1fr);
@media (max-width: mixins.$medium-breakpoint) {
grid-template-columns: repeat(1, 1fr);
}
a {
border: 2px solid;