Skip to content

Commit

Permalink
Fix overflowing text in SlotVizToolTip
Browse files Browse the repository at this point in the history
See: BIDS-3203
  • Loading branch information
MarcelBitfly committed Jul 9, 2024
1 parent 6c1c06b commit a26ec4b
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions frontend/components/slot/viz/SlotVizTooltip.vue
Original file line number Diff line number Diff line change
Expand Up @@ -300,6 +300,16 @@ const data = computed(() => {
align-items: flex-start;
word-wrap: nowrap;
white-space: nowrap;
.validators {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: var(--padding-tiny);
// otherwise the text: `...and XX more` will mess up the first column
> span:not(:has(> a)) {
grid-column: span 2;
text-align: left
}
}
}
}
}
Expand Down

0 comments on commit a26ec4b

Please sign in to comment.