Fix text box resizing (#750)

Closes #416
Closes #475
Closes #525
This commit is contained in:
triphora
2022-11-17 22:06:07 -05:00
committed by GitHub
parent 1738f92ce2
commit ddd3f7c196
4 changed files with 38 additions and 61 deletions

View File

@@ -752,6 +752,17 @@ tr.button-transparent {
}
}
.resizable-textarea-wrapper {
display: block;
textarea {
border-radius: var(--size-rounded-sm);
min-height: 10rem;
width: calc(100% - var(--spacing-card-lg) - var(--spacing-card-sm));
resize: vertical;
}
}
.error {
display: flex;
flex-direction: column;