Fix extremely long strings in breadcrumbs not wrapping
This commit is contained in:
parent
f12fdf48ff
commit
5fdd31f724
|
@ -27,6 +27,9 @@
|
|||
a {
|
||||
color: inherit;
|
||||
transition: color 130ms ease-out;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
a:hover {
|
||||
color: var(--spectrum-global-color-gray-900);
|
||||
|
|
|
@ -16,5 +16,7 @@
|
|||
}
|
||||
div :global(> *:last-child) {
|
||||
color: var(--spectrum-global-color-gray-900);
|
||||
flex: 1 1 auto;
|
||||
width: 0;
|
||||
}
|
||||
</style>
|
||||
|
|
Loading…
Reference in New Issue