carhop__dynamiques-theme__P.../resources/css/components/article-references.css
Nonimart 044eadfcb6
All checks were successful
continuous-integration/drone/push Build is passing
FIX Word break problem
2025-10-17 11:01:06 +02:00

22 lines
469 B
CSS

.article-references {
@apply mb-8;
.references-list {
@apply flex flex-col gap-4;
.reference-item {
@apply pl-6 relative;
word-break: break-word;
p,
span {
@apply !text-lg;
}
a {
@apply underline underline-offset-4 decoration-1;
}
&:before {
@apply content-[''] absolute top-3 left-0 w-3 h-3 bg-black rounded-full inline-block filter-primary;
}
}
}
}