From fd27b509cd6b0f96f0e3f83c8f1130ed6399d9fc Mon Sep 17 00:00:00 2001 From: Mike Fix Date: Wed, 1 May 2019 10:58:29 -0700 Subject: [PATCH] show hover background on focus too --- components/Button.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/components/Button.js b/components/Button.js index 6a81011..2fde149 100644 --- a/components/Button.js +++ b/components/Button.js @@ -52,7 +52,8 @@ const Button = ({ font-size: ${large ? '14px' : '12px'}; } - button:hover { + button:hover, + button:focus { background-color: ${hoverBackground} !important; color: ${hoverColor || color}; }