Skip to content

Commit

Permalink
fix(ui): fix responsive nav padding
Browse files Browse the repository at this point in the history
  • Loading branch information
gabaldon committed Mar 1, 2022
1 parent 9ef3e60 commit d0fd48b
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions packages/ui/components/NavBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -216,10 +216,11 @@ export default {
@media screen and (max-width: 1100px) {
.navbar {
padding: 0 16px;
margin: 0;
height: max-content;
.logo-container {
margin: 0 16px;
}
&.open {
height: 100vh;
}
Expand All @@ -237,15 +238,17 @@ export default {
position: fixed;
top: 0;
overflow: hidden;
overflow-y: hidden;
overflow-y: auto;
height: 100%;
z-index: 15;
}
.navbar {
display: block;
padding: 0;
padding: 0 16px;
.logo-container {
margin: 0 16px;
}
.responsive-menu {
display: block;
cursor: pointer;
Expand Down

0 comments on commit d0fd48b

Please sign in to comment.