From 31e1fb625b0494eedcaf046eac0cc515c0fd96fa Mon Sep 17 00:00:00 2001 From: Danielle Callan Date: Wed, 29 Nov 2023 23:10:04 -0500 Subject: [PATCH] reduce margins on horizontal rule --- R/ui.R | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/R/ui.R b/R/ui.R index c65f66c..5580cc3 100644 --- a/R/ui.R +++ b/R/ui.R @@ -7,7 +7,8 @@ ui <- shiny::fluidPage( theme = bslib::bs_theme(), shiny::tags$head( shiny::tags$style( - shiny::HTML(".shiny-notification { position:fixed; top: calc(20%); left: calc(50%); }") + shiny::HTML(".shiny-notification { position:fixed; top: calc(20%); left: calc(50%); }"), + shiny::HTML("hr { margin-top: 10px; margin-bottom: 10px }") ) ), shinyjs::useShinyjs(),