diff --git a/src/layout/Footer/FooterHost.svelte b/src/layout/Footer/FooterHost.svelte index b9db0d4..9e60cd2 100644 --- a/src/layout/Footer/FooterHost.svelte +++ b/src/layout/Footer/FooterHost.svelte @@ -155,9 +155,7 @@ } a:hover { - text-decoration: underline; - text-decoration-style: wavy; - text-decoration-color: var(--accent-color-two); + text-decoration: underline var(--accent-color-two); color: var(--white); } diff --git a/src/routes/contributors/+page.svelte b/src/routes/contributors/+page.svelte index 3926970..4ba6603 100644 --- a/src/routes/contributors/+page.svelte +++ b/src/routes/contributors/+page.svelte @@ -83,9 +83,7 @@ } a:hover { - text-decoration: underline; - text-decoration-style: wavy; - text-decoration-color: var(--grey-four); + text-decoration: underline var(--grey-four); } a:hover::after { diff --git a/src/routes/contributors/ContributorPerson.svelte b/src/routes/contributors/ContributorPerson.svelte index 5da40d4..ac17411 100644 --- a/src/routes/contributors/ContributorPerson.svelte +++ b/src/routes/contributors/ContributorPerson.svelte @@ -26,9 +26,7 @@ } a:hover { - text-decoration: underline; - text-decoration-style: wavy; - text-decoration-color: var(--accent-color); + text-decoration: underline var(--accent-color); color: var(--white); } diff --git a/src/routes/contributors/ContributorSection.svelte b/src/routes/contributors/ContributorSection.svelte index fc35355..64edbea 100644 --- a/src/routes/contributors/ContributorSection.svelte +++ b/src/routes/contributors/ContributorSection.svelte @@ -79,9 +79,7 @@ } a:hover { - text-decoration: underline; - text-decoration-style: wavy; - text-decoration-color: var(--accent-color); + text-decoration: underline var(--accent-color); color: var(--white); } diff --git a/src/routes/patches/PatchItem.svelte b/src/routes/patches/PatchItem.svelte index 830dd07..195e42e 100644 --- a/src/routes/patches/PatchItem.svelte +++ b/src/routes/patches/PatchItem.svelte @@ -92,10 +92,8 @@ } a .patch-info:hover { - text-decoration: underline; + text-decoration: underline var(--accent-color-two); color: var(--accent-color-two); - text-decoration-style: wavy; - text-decoration-color: var(--accent-color-two); } .info-container {