Update to input error display

This commit is contained in:
mateuswetah 2021-11-19 11:44:57 -03:00
parent 6695eff45e
commit 4972276b1e
1 changed files with 7 additions and 1 deletions

View File

@ -35,8 +35,10 @@ input[type="week"].input {
&:focus, &:active {
box-shadow: none !important;
background-color: var(--tainacan-input-background-color);
}
&:not(.is-danger):focus, &:not(.is-danger):active {
border: 1px solid var(--tainacan-gray4) !important;
background-color: var(--tainacan-input-background-color);
}
&:hover {
border: 1px solid var(--tainacan-gray3);
@ -66,3 +68,7 @@ input[type="week"].input {
color: var(--tainacan-info-color) !important;
}
}
textarea.textarea,
.textarea {
line-height: 1.35em;
}