From c38b38707c27cc39f4bcd2bffdd0e05267b3420a Mon Sep 17 00:00:00 2001 From: Jakob Scheid Date: Fri, 5 Jun 2026 13:47:14 +0200 Subject: [PATCH] underline focused links that are no buttons --- src/styles/common.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/styles/common.css b/src/styles/common.css index efb68fb..d756b82 100644 --- a/src/styles/common.css +++ b/src/styles/common.css @@ -23,7 +23,8 @@ body { text-decoration: none; } -.link:hover:not(.button-link) { +.link:hover:not(.button-link), .link:focus:not(.button-link) { + outline: none; text-decoration: underline; }