From e990cfc28f2c3a1d9dd9ded7a6c057527c8a31ac Mon Sep 17 00:00:00 2001 From: stef barsch <16940454+stefba@users.noreply.github.com> Date: Sat, 18 May 2024 20:22:20 +0200 Subject: [PATCH] Make links interactive --- src/css/main.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/css/main.scss b/src/css/main.scss index a0f598b..5cb3002 100644 --- a/src/css/main.scss +++ b/src/css/main.scss @@ -2,6 +2,11 @@ box-sizing:border-box } +button:hover, +a:hover { + text-decoration: underline; +} + div[tabindex="-1"]:focus { outline: 0; }