mirror of
https://github.com/uetchy/namae.git
synced 2025-03-17 12:30:32 +09:00
fix: disable spellcheck
This commit is contained in:
parent
78e2b852f5
commit
0fafe6b129
@ -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) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user