Skip to content

Commit

Permalink
Fix overflowing topbar with very long breadcrumb
Browse files Browse the repository at this point in the history
Fixes #6348
  • Loading branch information
distantnative committed Jul 22, 2024
1 parent 744a004 commit ea18cad
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 2 additions & 4 deletions panel/src/components/Navigation/Breadcrumb.vue
Original file line number Diff line number Diff line change
Expand Up @@ -100,16 +100,14 @@ export default {
display: flex;
align-items: center;
min-width: 0;
transition: flex-shrink 0.1s;
}
.k-breadcrumb ol li:not(:last-child)::after {
content: var(--breadcrumb-divider);
opacity: 0.175;
flex-shrink: 0;
}
.k-breadcrumb ol li {
min-width: 0;
transition: flex-shrink 0.1s;
}
.k-breadcrumb .k-icon[data-type="loader"] {
opacity: 0.5;
}
Expand Down
2 changes: 2 additions & 0 deletions panel/src/components/View/Topbar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ export default {
.k-topbar-breadcrumb {
margin-inline-start: -2px;
flex-shrink: 1;
min-width: 0;
}
.k-topbar-spacer {
Expand Down

0 comments on commit ea18cad

Please sign in to comment.