rowt/frontend/scss/components/_links.scss

14 lines
241 B
SCSS
Raw Normal View History

.link {
&-primary {
@apply text-primary-600 hover:text-primary-900 underline;
}
&-dark {
@apply text-primary-900 hover:text-primary-950 underline;
}
2023-04-08 07:29:39 +02:00
&-white {
@apply text-white hover:text-primary-100 underline;
}
}