From f0546ec6a2dd00ec83a30eae7b841abb606f522e Mon Sep 17 00:00:00 2001 From: Jolene Kearse Date: Tue, 4 Oct 2022 11:16:34 -0400 Subject: [PATCH] changed button hover/focus states --- style.css | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/style.css b/style.css index 5948c5a..82928b5 100644 --- a/style.css +++ b/style.css @@ -134,9 +134,11 @@ transition: all 0.3s linear; } -.common-button:hover { - background-color: transparent !important; - color: #fd7014 !important; +.common-button:hover, +.common-button:focus { + background-color: transparent; + color: #fd7014; + border: .15rem solid #fd7014; box-shadow: 0 0.5px 1px rgb(92, 92, 92) !important; }