From f0e1eb42f07a75f6b9ce2505e4cbb327d2ad1161 Mon Sep 17 00:00:00 2001 From: oSumAtrIX Date: Wed, 21 Jun 2023 03:21:06 +0200 Subject: [PATCH] feat: remove wavy text decoration (#121) --- src/layout/Footer/FooterHost.svelte | 4 +--- src/routes/contributors/+page.svelte | 4 +--- src/routes/contributors/ContributorPerson.svelte | 4 +--- src/routes/contributors/ContributorSection.svelte | 4 +--- src/routes/patches/PatchItem.svelte | 4 +--- 5 files changed, 5 insertions(+), 15 deletions(-) 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 {