Fix nav alignment on smaller screens

Problem: The nav is aligned to the left of the screen on mobile, which
feels off-center and unbalanced on mobile. https://github.com/fraction/oasis/issues/135

Solution: Center the menu to optimize for space around the links.
This commit is contained in:
Christian Bundy 2020-02-02 16:43:15 -08:00
parent ff54db563a
commit e28095e27d
1 changed files with 1 additions and 1 deletions

View File

@ -393,7 +393,7 @@ label {
nav > ul {
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
justify-content: space-around;
margin: 0;
padding: 0;
}