Files
wp-headless/wp-content/themes/moonshine/app/assets/css/links.css
Pascal Martineau f831c4e339
All checks were successful
Deployment / wordpress (push) Successful in 6s
Deployment / nuxt (push) Successful in 1m4s
feat: Replace eslint => oxlint + oxfmt
2026-02-01 21:54:16 -05:00

14 lines
399 B
CSS

/* Variant to target all children links without specific link or button classes */
@custom-variant links (& a:not([class*='link-']):not([class*='button-']));
/* Link styles */
@utility link-base {
@apply cursor-pointer disabled-default transition;
}
@utility link-underline {
@apply link-base underline hover:decoration-primary;
}
@utility link-opacity {
@apply link-base hover:opacity-80;
}