9 lines
187 B
CSS
9 lines
187 B
CSS
@layer components {
|
|
.ks-text-link {
|
|
@apply text-blue-600;
|
|
&:hover { @apply underline; }
|
|
&:visited { @apply text-indigo-600; }
|
|
&:active { @apply text-red-600; }
|
|
}
|
|
}
|