Don't underline thesis on home page

This commit is contained in:
Thomas 2022-04-26 07:26:26 +01:00
parent 985a470157
commit 2b22883eba

View file

@ -1,5 +1,5 @@
<script context="module"> <script context="module">
export const prerender = true export const prerender = true;
</script> </script>
<script lang="ts"> <script lang="ts">
@ -167,12 +167,13 @@
border-radius: var(--link-border-radius); border-radius: var(--link-border-radius);
border: 1px solid var(--brand-orange); border: 1px solid var(--brand-orange);
color: var(--brand-orange); color: var(--brand-orange);
text-decoration: none;
} }
.thesis:hover { .thesis:hover {
background: var(--brand-orange); background: var(--brand-orange);
color: white; color: white;
text-decoration: none; text-decoration: underline;
} }
.links a { .links a {