From 20b7d0265a53e0c0e5efc57b06e8f8fd76e362cd Mon Sep 17 00:00:00 2001 From: Gabriel Cozma Date: Sat, 8 Jun 2024 17:20:26 +0300 Subject: [PATCH] fix: remove link decoration to the articles' footer --- CHANGELOG.md | 4 ++++ layouts/Helpful.vue | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a04a358..95a850a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ - Add a configurable message after each article +### Fix(es) + +- Remove link decoration to the articles' footer + ## 2.0.2 (2024-06-05) ### Fix(es) diff --git a/layouts/Helpful.vue b/layouts/Helpful.vue index f3766b6..9725ac6 100644 --- a/layouts/Helpful.vue +++ b/layouts/Helpful.vue @@ -43,6 +43,10 @@ const { theme } = useData(); &:hover { background-color: var(--color-background-mute); } + + &::after { + display: none; + } } }