feat(breadcrumb): basic overflow support

This commit is contained in:
Elian Doran 2025-12-08 22:09:46 +02:00
parent 1e5fcf635e
commit 11467775b6
No known key found for this signature in database

View File

@ -5,10 +5,18 @@
align-items: center;
font-size: 0.9em;
gap: 0.25em;
flex-wrap: nowrap;
overflow: hidden;
a {
color: inherit;
text-decoration: none;
width: 100%;
max-width: 200px;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
display: block;
}
ul {