homegrade_theme_production/resources/css/components/breadcrumb.css
2023-12-13 16:32:01 +01:00

40 lines
944 B
CSS

.breadcrumbs_navigation {
@apply pt-6 container mx-auto px-0 pl-1;
ol {
@apply list-none flex flex-wrap lg:flex-nowrap items-start text-sm font-bold gap-x-2 !my-0;
li {
@apply flex items-start pt-4;
/* min-width: 40px; */
a {
@apply text-neutral-900 font-semibold underline;
margin-top: -6px;
/* text-decoration: none; */
}
a[aria-current='location'] {
@apply no-underline font-bold;
}
}
li:nth-child(1) {
@apply shrink-0;
min-width: 0;
a {
margin-top: -4px;
}
}
li + li {
&:before {
@apply mr-2 shrink-0;
@apply inline-block;
transform: rotate(-45deg);
content: '';
border-right: 2.5px solid #000;
border-bottom: 2.5px solid #000;
border-radius: 2px;
height: 8px;
width: 8px;
}
}
}
}