From 06bef9cc3ce34c00d35225572a82b0aca95c7773 Mon Sep 17 00:00:00 2001 From: davegson <3080765+davegson@users.noreply.github.com> Date: Mon, 30 Mar 2020 17:44:13 +0200 Subject: [PATCH] Remove min height for placeholder segments --- _sass/_semantic_fixes.scss | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/_sass/_semantic_fixes.scss b/_sass/_semantic_fixes.scss index 141bc56..dabb989 100644 --- a/_sass/_semantic_fixes.scss +++ b/_sass/_semantic_fixes.scss @@ -116,3 +116,10 @@ display: none !important; } } + +// no reason to have a min height for segments +// normal segments do not have min-height, why should the placeholder one have it? +// if extra height is needed, just add it to the segment manually +.ui.placeholder.segment { + min-height: 0rem; +}