From 7fa1e2d35d4be49900625b160746d15bf2a78571 Mon Sep 17 00:00:00 2001 From: Adrian Wannenmacher Date: Tue, 3 Mar 2026 19:26:24 +0100 Subject: [PATCH] implement hover and focus highlights for buttons --- style.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/style.css b/style.css index e014ffb..ed1739e 100644 --- a/style.css +++ b/style.css @@ -72,6 +72,13 @@ button { background-color: hsl(from var(--color-primary-background) h s calc(l + 25)); } + + &:hover, + &:focus { + color: hsl(from var(--color-primary-text) h s calc(l + 10)); + background-color: + hsl(from var(--color-primary-background) h s calc(l + 10)); + } } header.layout {