fix: adjusts styles to allow error bg to fill textarea

This commit is contained in:
Jarrod Flesch
2022-11-18 16:11:32 -05:00
parent c303913e61
commit 2e57b76df0

View File

@@ -6,13 +6,13 @@
.textarea-outer {
@include formInput();
display: block;
display: flex;
resize: vertical;
height: auto;
min-height: base(3);
height: 100%;
// Scrollbar for giant content
max-height: 90vh;
max-height: calc(100vh - $top-header-offset - calc(#{base(5)}));
overflow: auto;
@include mid-break {