21 lines
462 B
CSS
21 lines
462 B
CSS
.breadcrumbs_navigation {
|
|
@apply py-6 container mx-auto px-0;
|
|
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);
|
|
}
|
|
}
|
|
}
|
|
}
|