err scr fix

This commit is contained in:
madarsbiss 2021-08-03 14:01:36 +03:00
parent b33a6ac6b2
commit cd76f6783a
2 changed files with 20 additions and 9 deletions

View File

@ -339,14 +339,16 @@ export default function Home() {
</div>
) : weatherData && weatherData.message ? (
<div className={styles.errScr}>
<h1 style={{ marginBottom: "30px" }}>City not found, try again!</h1>
<input
type="text"
className={styles.searchInput}
onFocus={(e) => (e.target.value = "")}
onChange={(e) => setInput(e.target.value)}
onKeyDown={(e) => enterKeydown(e)}
/>
<div>
<h1 style={{ marginBottom: "30px" }}>City not found, try again!</h1>
<input
type="text"
className={styles.searchInput}
onFocus={(e) => (e.target.value = "")}
onChange={(e) => setInput(e.target.value)}
onKeyDown={(e) => enterKeydown(e)}
/>
</div>
</div>
) : (
<h1>Loading data...</h1>

View File

@ -74,7 +74,6 @@
font-size: 20px;
text-align: right;
border-radius: 10px;
/* border: 2px solid black; */
font-family: "Varela Round", sans-serif;
font-size: 18px;
}
@ -91,6 +90,16 @@
.errScr {
text-align: center;
height: 100vh;
max-width: 300px;
display: grid;
place-items: center;
padding: 20px;
margin: 0 auto;
}
.errSearchInput {
max-width: 100%;
}
@media only screen and (max-width: 950px) {