summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2023-05-02 10:47:16 +0300
committerYuval Adam <_@yuv.al>2023-05-02 10:47:16 +0300
commit77031ad6101797e6acf696b14c59d584e7c1b49b (patch)
tree9b5dbba9b6411d673c91e4f9433a627932daa0da
parent22609ad8dd38416faee673c229c738c0ad645940 (diff)
Add underline-hover on links
-rw-r--r--templates/index.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/index.html b/templates/index.html
index 6832126..b9a6d04 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -33,7 +33,7 @@
<ul class="list pl0">
{% for name in names %}
<li class="mb3">
- <div class="f3">{{ name|render_link("link dim blue")|safe }}</div>
+ <div class="f3">{{ name|render_link("link dim blue underline-hover")|safe }}</div>
<div class="gray serif mt1">{{ name.title }}</div>
</li>
{% endfor %}
@@ -43,7 +43,7 @@
<ul class="pl0 flex flex-wrap justify-between">
{% for name in candidates %}
<li class="mb3 dib pr3-ns pr1">
- <span class="f4-ns f5">{{ name|render_link("link dim blue")|safe }}</span>
+ <span class="f4-ns f5">{{ name|render_link("link dim blue underline-hover")|safe }}</span>
</li>
{% endfor %}
</ul>