Skip to content

Commit

Permalink
Update smallest size
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinamstutz committed Nov 23, 2021
1 parent 5366d1a commit e86dc06
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions src/css/header.css
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,37 @@ body {
.navbar-item.logo {
display: none;
}

.navbar-item,
.navbar-link {
padding: 0;
}

.navbar-brand {
height: inherit;
}

.navbar-brand .navbar-item {
align-items: center;
display: flex;
}

.navbar-menu {
background: var(--navbar-menu-background);
box-shadow: 0 8px 16px rgba(10, 10, 10, 0.1);
max-height: var(--body-min-height);
overflow-y: auto;
padding: 0.5rem 0;
}

.navbar-menu:not(.is-active) {
display: none;
}

.navbar-menu a.navbar-item:hover,
.navbar-menu .navbar-link:hover {
background: var(--navbar-menu_hover-background);
}
}

@media screen and (max-width: 1023.5px) and (min-width: 481px) {
Expand Down

0 comments on commit e86dc06

Please sign in to comment.