mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
26 lines
432 B
SCSS
26 lines
432 B
SCSS
|
|
:host {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
padding-block-end: 1.5rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.docs-breadcrumb {
|
||
|
|
span {
|
||
|
|
color: var(--quaternary-contrast);
|
||
|
|
font-size: 0.875rem;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
}
|
||
|
|
|
||
|
|
&:not(:last-child) {
|
||
|
|
span {
|
||
|
|
&::after {
|
||
|
|
content: 'chevron_right';
|
||
|
|
font-family: var(--icons);
|
||
|
|
margin-inline: 0.5rem;
|
||
|
|
color: var(--quinary-contrast);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|