Enable resizing of message box (#11950) (#12251)

* Enable resizing of message box (#11950)

* Added maximum height to textarea (#11950)

Co-authored-by: Alex Jeffrey <alex@alexjeffrey.mee>
This commit is contained in:
Alex Jeffrey
2020-06-07 11:53:36 +01:00
committed by GitHub
parent eae8ed946f
commit 1ebda8281b

View File

@@ -429,11 +429,12 @@
} }
&.has-content { &.has-content {
--textarea-auto-height: 80px --textarea-auto-height: 80px;
} }
max-height: var(--textarea-auto-height, 40px); height: var(--textarea-auto-height, 40px);
min-height: var(--textarea-auto-height, 40px); min-height: var(--textarea-auto-height, 40px);
max-height: 300px;
} }
} }