1
0

implement hover and focus highlights for buttons

This commit is contained in:
Adrian Wannenmacher 2026-03-03 19:26:24 +01:00
parent 061c04f74f
commit 7fa1e2d35d
Signed by: tfld
GPG Key ID: 19D986ECB1E492D5

View File

@ -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 {