carhop__dynamiques-theme__P.../resources/css/components/footnote-reference.css
Nonimart 17bea1ba4a
All checks were successful
continuous-integration/drone/push Build is passing
FEEDBACK Removing undelining when hovering footnote
2025-10-06 11:11:10 +02:00

30 lines
600 B
CSS

.footnote-reference {
color: unset;
cursor: pointer;
&:hover {
/* @apply underline underline-offset-8; */
/* text-decoration-thickness: 1px;
@apply decoration-neutral-400; */
@apply text-primary;
&:after {
transform: translate(0px, -2px) scale(1.1);
z-index: 10;
transition: all 0.3s ease;
@apply nunito;
}
}
&:after {
transform: translate(0px, -2px) scale(1);
transition: all 0.3s ease;
@apply nunito;
}
.wp-block-pullquote & {
&:after {
transform: translate(0px, -6px);
}
}
}