Remove min height for placeholder segments

This commit is contained in:
davegson 2020-03-30 17:44:13 +02:00
parent 5e24a14b74
commit 06bef9cc3c

View file

@ -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;
}