From 080ebb24ca82226a3526ac32bd87146d74a1d710 Mon Sep 17 00:00:00 2001 From: Ari Archer Date: Mon, 26 Aug 2024 05:05:49 +0300 Subject: [PATCH] add :focus to up and down classes Signed-off-by: Ari Archer --- src/static/css/index.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/static/css/index.css b/src/static/css/index.css index 033ad07..8b4f0da 100644 --- a/src/static/css/index.css +++ b/src/static/css/index.css @@ -137,11 +137,13 @@ form > button { mask: url(/static/svg/down.svg); } -.up:hover { +.up:hover, +.up:focus { background: var(--green); } -.down:hover { +.down:hover, +.down:focus { background: var(--red); }