homegrade_theme_production/resources/css/components/breadcrumb.css

21 lines
463 B
CSS

.breadcrumbs_navigation {
@apply py-6 max-w-screen-xl mx-auto;
ol {
@apply list-none flex items-center text-sm font-bold;
li + li {
&:before {
@apply ml-1 mr-2;
@apply inline-block;
content: '';
border-right: 2.5px solid #000;
border-bottom: 2.5px solid #000;
border-radius: 2px;
height: 8px;
width: 8px;
transform: rotate(-45deg);
}
}
}
}