1
0
mirror of https://github.com/uetchy/namae.git synced 2025-03-17 04:30:31 +09:00

fix: disable spellcheck

This commit is contained in:
uetchy 2019-07-31 03:58:59 +09:00
parent 78e2b852f5
commit 0fafe6b129

View File

@ -41,9 +41,10 @@ export default function App() {
onChange={onChange} onChange={onChange}
type="text" type="text"
placeholder="awesome-package" placeholder="awesome-package"
autoComplete="off" autocomplete="off"
autoCorrect="off" autocorrect="off"
autoCapitalize="off" autocapitalize="off"
spellcheck="false"
/> />
</Header> </Header>
{query && query.length > 0 ? ( {query && query.length > 0 ? (
@ -112,7 +113,7 @@ const Input = styled.input`
transition: box-shadow 0.5s ease-out; transition: box-shadow 0.5s ease-out;
&:hover { &: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) { @media screen and (max-width: 800px) {