From ec34a90393a478b90e97d6654d5ba77150ab8847 Mon Sep 17 00:00:00 2001 From: Geoff Doty Date: Sun, 21 Jan 2024 15:39:20 -0500 Subject: [PATCH] fix button.link:hover --- src/stylelite.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/stylelite.css b/src/stylelite.css index f3fd4a1..9980480 100644 --- a/src/stylelite.css +++ b/src/stylelite.css @@ -244,6 +244,13 @@ button.link { color: var(--theme) } +button.link:hover { + background: none; + border: none; + color: var(--theme); + text-decoration: underline; +} + a.button, button { background: var(--theme); color: var(--white);