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