carhop__dynamiques-theme__P.../resources/css/components/footnotes-index.css
Nonimart 0ac44c051f
All checks were successful
continuous-integration/drone/push Build is passing
STYLE Fixing margin on footniotes
2025-08-27 14:31:49 +02:00

26 lines
540 B
CSS

.footnotes-index {
counter-reset: footnote-index;
@apply mb-4;
li {
@apply !mb-4;
&:before {
content: counter(footnote-index);
counter-increment: footnote-index;
@apply mr-2 text-white text-base inline-flex bg-primary rounded-full w-8 h-8 items-center justify-center;
}
}
a {
@apply text-carhop-gray opacity-80 text-lg;
&[active='true'] {
@apply text-carhop-green-700 font-semibold opacity-100;
}
}
li,
a {
line-height: 1.3 !important;
}
}