Skip to content

Commit

Permalink
fix visual bug with cluster description on main side nav (#10767)
Browse files Browse the repository at this point in the history
  • Loading branch information
aalves08 committed Apr 8, 2024
1 parent d25dafe commit 7cc94dc
Showing 1 changed file with 14 additions and 10 deletions.
24 changes: 14 additions & 10 deletions shell/components/nav/TopLevelMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1004,17 +1004,21 @@ export default {
}
}
.cluster-name p {
width: 195px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
text-align: left;
.cluster-name {
line-height: normal;
& > p {
width: 195px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
text-align: left;
&.description {
font-size: 12px;
padding-right: 8px;
color: var(--darker);
&.description {
font-size: 12px;
padding-right: 8px;
color: var(--darker);
}
}
}
Expand Down

0 comments on commit 7cc94dc

Please sign in to comment.