Skip to content
This repository was archived by the owner on Jun 28, 2025. It is now read-only.

Commit 801fd17

Browse files
author
Manuel Proß
committed
feat(web): add styling for hyperlinks
1 parent 67a8e02 commit 801fd17

File tree

1 file changed

+20
-2
lines changed

1 file changed

+20
-2
lines changed

web/src/styles/_text.scss

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,26 @@
2020
@apply font-normal text-base text-white;
2121
}
2222

23-
.link {
24-
@apply font-normal text-base text-white;
23+
a.link {
24+
&:link {
25+
@apply font-normal font-semibold text-base text-white underline;
26+
}
27+
28+
&:visited {
29+
@apply text-gray-1;
30+
}
31+
32+
&:hover {
33+
@apply text-primary;
34+
}
35+
36+
&:focus {
37+
@apply text-red-600;
38+
}
39+
40+
&:active {
41+
@apply text-primary;
42+
}
2543
}
2644

2745
.text- ul.list li {

0 commit comments

Comments
 (0)