From ee18052be92e5042209b08759b4cc518bc293815 Mon Sep 17 00:00:00 2001 From: jasquat <2487833+jasquat@users.noreply.github.com> Date: Fri, 9 Jun 2023 11:50:42 -0400 Subject: [PATCH] added css to make the hr elements look like they do for bootstrap w/ burnettk (#320) Co-authored-by: jasquat --- spiffworkflow-frontend/src/index.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/spiffworkflow-frontend/src/index.css b/spiffworkflow-frontend/src/index.css index 523a6cc1..a7276419 100644 --- a/spiffworkflow-frontend/src/index.css +++ b/spiffworkflow-frontend/src/index.css @@ -582,3 +582,16 @@ svg.notification-icon { .version-info-column { width: 50%; } + +/* From bootstrap _reboot.scss, people got used to this when we +* had the bootstrap stylesheets, and they liked it. +* Otherwise, the hr in the user profile dropdown shows up as a dot +* and from markdown it's a little darker. +*/ +hr { + border: 0; + border-top: 1px solid; + color: inherit; + margin: 1rem 0; + opacity: .25; +}