1
0
Fork 0
mirror of synced 2024-09-11 23:16:00 +12:00

Fix extremely long strings in breadcrumbs not wrapping

This commit is contained in:
Andrew Kingston 2022-12-20 17:27:50 +00:00
parent f12fdf48ff
commit 5fdd31f724
2 changed files with 5 additions and 0 deletions

View file

@ -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);

View file

@ -16,5 +16,7 @@
}
div :global(> *:last-child) {
color: var(--spectrum-global-color-gray-900);
flex: 1 1 auto;
width: 0;
}
</style>