From ddfa7baff38d883e8e2fcba875ded6b268caea26 Mon Sep 17 00:00:00 2001 From: Michael Gubler Date: Sun, 16 Aug 2020 21:16:47 -0400 Subject: [PATCH] Added style to inputs so they don't get outlined when focused --- src/TweetBox.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/TweetBox.css b/src/TweetBox.css index 2a7b956..ddefa6e 100644 --- a/src/TweetBox.css +++ b/src/TweetBox.css @@ -21,11 +21,19 @@ border: none; } +.tweetBox__input > input:focus { + outline: none; +} + .tweetBox__imageInput { border: none; padding: 10px; } +.tweetBox__imageInput:focus { + outline: none; +} + .tweetBox__tweetButton { background-color: var(--twitter-color) !important; border: none !important;