chore: Moved Breadcrumbs to design system and added stories

Approved-by: Bianca Widstam
This commit is contained in:
Erik Tiekstra
2026-01-21 07:19:19 +00:00
parent 17c78be916
commit 8a143a2916
35 changed files with 524 additions and 357 deletions

View File

@@ -0,0 +1,27 @@
.breadcrumb {
display: flex;
align-items: center;
gap: var(--Space-x025);
flex-shrink: 0;
flex-grow: 0;
&:last-of-type {
flex: 1;
max-width: 100%;
min-width: 0;
}
}
.link {
display: flex;
color: var(--breadcrumbs-text-color);
&:hover {
color: var(--breadcrumbs-text-hover-color);
text-decoration: underline;
}
}
.icon {
flex-shrink: 0;
}