Newer
Older
pre-www / src / assets / css / components / breadcrumbs.css
.breadcrumbs{
    @apply grid-container mt-6.25 mb-10 md:mt-15 md:mb-20 xl:my-25;
    ul{
        @apply flex flex-wrap;
        li{
            @apply text-size-lg;
            &:not(:last-child){
                &::after{
                    content: '/';
                    @apply mx-[0.75vw];
                }
            }
            a, span{
                @apply text-grey-300;
            }
            &:last-child{
                span{
                    @apply text-black;
                }
            }
        }
    }
}