15 lines
251 B
SCSS
15 lines
251 B
SCSS
@layer components {
|
|
.ks-text-link {
|
|
@apply text-blue-600;
|
|
&:hover { @apply underline; }
|
|
&:visited { @apply text-indigo-600; }
|
|
&:active { @apply text-red-600; }
|
|
}
|
|
|
|
.devise-links {
|
|
a {
|
|
@apply ks-text-link;
|
|
}
|
|
}
|
|
}
|