Skip to content

Commit

Permalink
fix: truncate long titles in the sidebar (Kong#253)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidma415 authored Sep 25, 2023
1 parent fefc486 commit 220d68c
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/components/product/Sidebar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@
<aside>
<div class="px-5 py-6 content">
<header class="mb-6">
<span class="title mb-5">
<span
class="title mb-5"
:title="product?.name"
>
{{ product?.name }}
</span>
<KAlert
Expand Down Expand Up @@ -103,6 +106,9 @@ watch([
font-size: 20px;
display: block;
color: var(--text_colors-primary);
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.version-select-dropdown :deep(div.k-select-input.select-input-container) {
Expand Down

0 comments on commit 220d68c

Please sign in to comment.