11 lines
269 B
CSS
11 lines
269 B
CSS
/* 3. TextLink Component */
|
|
.c-text-link {
|
|
@apply underline underline-offset-4 transition-colors duration-300 ease-out;
|
|
color: var(--foreground);
|
|
text-decoration-color: var(--border);
|
|
|
|
&:hover {
|
|
text-decoration-color: var(--foreground);
|
|
}
|
|
}
|