36 lines
662 B
CSS
36 lines
662 B
CSS
/**
|
|
* START --- TAILWIND GENERATOR EDIT
|
|
*
|
|
* `yarn rw generate util tailwind` placed these imports here
|
|
* to inject Tailwind's styles into your CSS.
|
|
* For more information, see: https://tailwindcss.com/docs/installation#add-tailwind-to-your-css
|
|
*/
|
|
@import "tailwindcss/base";
|
|
@import "tailwindcss/components";
|
|
@import "tailwindcss/utilities";
|
|
/**
|
|
* END --- TAILWIND GENERATOR EDIT
|
|
*/
|
|
|
|
body {
|
|
/* TODO can I use a tailwind class here? */
|
|
background-color: #4a5568;
|
|
}
|
|
|
|
button, input, label, textarea {
|
|
display: block;
|
|
outline: none;
|
|
}
|
|
|
|
label {
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
.error {
|
|
color: red;
|
|
}
|
|
|
|
input.error, textarea.error {
|
|
border: 1px solid red;
|
|
}
|