Make menu more responsive

This commit is contained in:
Ariejan de Vroom 2024-01-24 14:55:35 +01:00
parent 7750943b43
commit 123d753c85
Signed by: ariejan
GPG Key ID: AD739154F713697B

View File

@ -84,6 +84,8 @@ nav {
flex: 2;
display: flex;
flex-direction: row;
gap: 0.8rem;
justify-content: flex-end;
@ -92,6 +94,14 @@ nav {
font-weight: 700;
}
@media screen and (max-width: 600px) {
flex-direction: column;
align-items: flex-end;
gap: 0.4rem;
}
}
}