From 61bf080015c1fb073506c60973d132ea3f052e49 Mon Sep 17 00:00:00 2001 From: domyen Date: Thu, 11 Jul 2019 11:32:48 -0400 Subject: [PATCH] Input: Change the "code" style focus color to blue --- src/components/Input.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/Input.js b/src/components/Input.js index 8963a33d..a9afc268 100644 --- a/src/components/Input.js +++ b/src/components/Input.js @@ -109,6 +109,8 @@ const InputWrapper = styled.div` border-radius: 2px; background: rgba(0,0,0,.05); padding: 3px 6px; + + &:focus { box-shadow: ${color.secondary} 0 0 0 1px inset; } `} }