From c89e2546b0c84f4aad076070254fc96a2292b5f3 Mon Sep 17 00:00:00 2001 From: davegson <3080765+davegson@users.noreply.github.com> Date: Mon, 30 Mar 2020 17:44:31 +0200 Subject: [PATCH] Add custem class for "full" vertical dividers --- _sass/_semantic_fixes.scss | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/_sass/_semantic_fixes.scss b/_sass/_semantic_fixes.scss index dabb989..9aa93b6 100644 --- a/_sass/_semantic_fixes.scss +++ b/_sass/_semantic_fixes.scss @@ -123,3 +123,11 @@ .ui.placeholder.segment { min-height: 0rem; } + +// a 'normal' .ui.vertical.divider has text in between, this adds the option to have the line fully go through it +// essentially a margin... +.ui.full.vertical.divider { + &::before, &::after { + height: 100%; + } +}