Skip to content

Instantly share code, notes, and snippets.

@ravisiyer
Last active February 8, 2024 07:52
Show Gist options
  • Save ravisiyer/69139d724101726fd8481e6c5fdf17ac to your computer and use it in GitHub Desktop.
Save ravisiyer/69139d724101726fd8481e6c5fdf17ac to your computer and use it in GitHub Desktop.
Notes on React useEffect - index.css
* {
margin: 0;
box-sizing: border-box;
}
#root {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
max-width: 600px;
padding: 0.5rem;
}
.TestForm {
width: 100%;
border: 2px solid;
padding: 0.5rem;
margin-bottom: 0.5rem;
}
.TestForm input[type="text"],
textarea {
width: 100%;
}
button:hover {
background-color: black;
color: white;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment