feat: center navbar for large screen sizes (#2126)

* feat: center navbar for widths >991px

* fix: update src/routes/_components/Nav.html

fixes #403

Co-authored-by: Nolan Lawson <nolan@nolanlawson.com>
This commit is contained in:
Rylan Cates 2022-04-23 11:08:55 -04:00 committed by GitHub
parent 05a3b2d31f
commit ce03460b86
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -48,6 +48,12 @@
}
}
@media (min-width: 1400px) {
.main-nav-ul {
justify-content: center;
}
}
</style>
<script>
import NavItem from './NavItem.html'