edit search value

This commit is contained in:
madarsbiss 2021-08-03 11:13:44 +03:00
parent 5daa871518
commit cd2af9eb5b
2 changed files with 3 additions and 2 deletions

View File

@ -157,6 +157,7 @@ export default function Home() {
<input <input
type="text" type="text"
className={styles.searchInput} className={styles.searchInput}
defaultValue="Search..."
onFocus={(e) => (e.target.value = "")} onFocus={(e) => (e.target.value = "")}
onChange={(e) => setInput(e.target.value)} onChange={(e) => setInput(e.target.value)}
onKeyDown={(e) => enterKeydown(e)} onKeyDown={(e) => enterKeydown(e)}

View File

@ -73,7 +73,8 @@
color: #303030; color: #303030;
font-size: 20px; font-size: 20px;
text-align: right; text-align: right;
border-radius: 3px; border-radius: 10px;
/* border: 2px solid black; */
font-family: "Varela Round", sans-serif; font-family: "Varela Round", sans-serif;
font-size: 18px; font-size: 18px;
} }
@ -109,7 +110,6 @@
.wrapper { .wrapper {
margin: 0 auto; margin: 0 auto;
border-radius: 0; border-radius: 0;
/* width: 100%; */
} }
.statsBox { .statsBox {