Remove container from nav

- Replaced container for the nav component with a custom style instead using
max-width and margin: 0 auto.
This commit is contained in:
2020-12-13 12:33:13 +00:00
parent f9e112d468
commit 0581f7aa7b
2 changed files with 24 additions and 21 deletions

View File

@ -44,6 +44,11 @@ hr {
background-color: var(--line-color);
}
nav {
max-width: 1200px;
margin: 0 auto;
}
li a:hover {
border-bottom: 3px solid var(--line-color);
text-decoration: none;