18 lines
186 B
CSS
18 lines
186 B
CSS
|
|
button, input, label, textarea {
|
|
display: block;
|
|
outline: none;
|
|
}
|
|
|
|
label {
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
.error {
|
|
color: red;
|
|
}
|
|
|
|
input.error, textarea.error {
|
|
border: 1px solid red;
|
|
}
|