Files
LoreMind/web/src/app/shared/breadcrumb/breadcrumb.component.scss
IETM_FIXE\ietm6 ba8a503b3e
All checks were successful
Build & Push Images / build (brain) (push) Successful in 46s
Build & Push Images / build (core) (push) Successful in 1m21s
Build & Push Images / build (web) (push) Successful in 1m25s
Mise en ligne de la version 0.2.0
2026-04-21 14:25:17 +02:00

51 lines
700 B
SCSS
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
.breadcrumb {
font-size: 0.82rem;
color: #6b7280;
margin-bottom: 1rem;
ol {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 0.35rem;
list-style: none;
margin: 0;
padding: 0;
}
}
.breadcrumb-item {
display: inline-flex;
align-items: center;
gap: 0.35rem;
&::before {
content: '';
color: #4b5563;
}
&:first-child::before {
content: none;
}
&.current .breadcrumb-text {
color: #e5e7eb;
font-weight: 500;
}
}
.breadcrumb-link {
color: #9ca3af;
text-decoration: none;
transition: color 0.15s;
&:hover {
color: #a5b4fc;
text-decoration: underline;
}
}
.breadcrumb-text {
color: inherit;
}