From bf00e21afa716af53cbd6e33ae1311bc53200264 Mon Sep 17 00:00:00 2001 From: Arby Date: Mon, 30 Dec 2024 20:15:55 +0100 Subject: [PATCH] Add text-decoration: none to .btn links for better styling --- src/extra/buttons.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/extra/buttons.css b/src/extra/buttons.css index 2598022c..ad3ffec6 100644 --- a/src/extra/buttons.css +++ b/src/extra/buttons.css @@ -101,6 +101,10 @@ } } +:where(.btn:is(a)) { + text-decoration: none; +} + /* adaptive indigo text */ :where([type="submit"], form button:not([type],[disabled])) { --_text: var(--_accent, var(--link));