Skip to content

Commit

Permalink
fix(app-layout): hide navbar logo on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdehaven committed Aug 14, 2023
1 parent 05fa6a3 commit bd9bd48
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions packages/core/app-layout/src/components/AppLayout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -314,6 +314,14 @@ onBeforeUnmount(() => {
text-decoration: none;
}
}
.navbar-logo {
display: none;
@media (min-width: $kui-breakpoint-tablet) {
display: block;
}
}
}
.kong-ui-app-layout-main {
Expand Down

0 comments on commit bd9bd48

Please sign in to comment.