Skip to content

Commit a543b88

Browse files
Underline links by default
1 parent e68b2d4 commit a543b88

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/website/page/index.gleam

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ fn index() {
1515
html.a(
1616
[
1717
attribute.target("_blank"),
18-
attribute.class("font-bold hover:underline"),
18+
attribute.class("font-bold underline"),
1919
attribute.href("https://gleam.run"),
2020
],
2121
[html.text("Gleam programming language")],
@@ -26,7 +26,7 @@ fn index() {
2626
html.a(
2727
[
2828
attribute.target("_blank"),
29-
attribute.class("font-bold hover:underline"),
29+
attribute.class("font-bold underline"),
3030
attribute.href("https://youtube.com/@Gearsdatapacks"),
3131
],
3232
[html.text("YouTube channel")],
@@ -40,7 +40,7 @@ fn index() {
4040
html.a(
4141
[
4242
attribute.target("_blank"),
43-
attribute.class("font-bold hover:underline"),
43+
attribute.class("font-bold underline"),
4444
attribute.href("https://github.com/sponsors/GearsDatapacks"),
4545
],
4646
[html.text("sponsor me on GitHub")],

0 commit comments

Comments
 (0)