From 0fafe6b1290740213326150c2af19ebbe96c60bf Mon Sep 17 00:00:00 2001 From: Yasuaki Uechi Date: Wed, 31 Jul 2019 03:58:59 +0900 Subject: [PATCH] fix: disable spellcheck --- src/App.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/App.js b/src/App.js index 5712962..16043c8 100644 --- a/src/App.js +++ b/src/App.js @@ -41,9 +41,10 @@ export default function App() { onChange={onChange} type="text" placeholder="awesome-package" - autoComplete="off" - autoCorrect="off" - autoCapitalize="off" + autocomplete="off" + autocorrect="off" + autocapitalize="off" + spellcheck="false" /> {query && query.length > 0 ? ( @@ -112,7 +113,7 @@ const Input = styled.input` transition: box-shadow 0.5s ease-out; &:hover { - box-shadow: 0 0 20px rgba(0, 0, 0, 0.3); + box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); } @media screen and (max-width: 800px) {