From 0cd7f7e5a7d1fefc6504113198e59e887763dd14 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 52f0b3a..ee6418f 100644 --- a/src/styles/common.css +++ b/src/styles/common.css @@ -25,7 +25,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; }