From af6c85cb62a38333b7ea24a635c555ef59fd8424 Mon Sep 17 00:00:00 2001 From: Harrison Healey Date: Mon, 11 Apr 2016 13:43:07 -0400 Subject: [PATCH] Added min/max height to edit post modal and allowed suggestion list to overflow (#2674) --- webapp/sass/components/_modal.scss | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/webapp/sass/components/_modal.scss b/webapp/sass/components/_modal.scss index 0cb19b7175..22317a1565 100644 --- a/webapp/sass/components/_modal.scss +++ b/webapp/sass/components/_modal.scss @@ -14,13 +14,18 @@ max-height: calc(90vh - 62px); overflow: auto; padding: 20px 15px; + } - .edit-modal-body { - overflow: visible; + .edit-modal-body { + overflow: visible; - .suggestion-list__content { - max-height: 150px; - } + .custom-textarea { + min-height: 8em; + max-height: 60vh; + } + + .suggestion-list__content { + max-height: 150px; } }