From 50bb98a109734899b5d8b25542bc6d4ff92fda5e Mon Sep 17 00:00:00 2001 From: dogeystamp Date: Mon, 2 Jan 2023 15:10:29 -0500 Subject: [PATCH] style.css: make button react on focus, not just hover --- style.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/style.css b/style.css index 78cf514..9e7602a 100644 --- a/style.css +++ b/style.css @@ -97,6 +97,9 @@ button { transition-duration: 0.05s; border: 1px solid #44444444; } +button:focus { + border: 1px solid #44444477; +} button:hover { border: 1px solid #444444aa; }