Files
hacky-ruadat/frontend/scss/components/_links.scss
2025-05-03 16:26:43 +02:00

18 lines
340 B
SCSS

.link {
&-primary {
@apply text-primary-600 dark:text-primary-200 hover:text-primary-900 hover:dark:text-primary-300 underline;
}
&-dark {
@apply text-primary-900 hover:text-primary-950 underline;
}
&-white {
@apply text-white hover:text-primary-100 underline;
}
&-no-underline {
@apply no-underline;
}
}