From d80812e4c726413bd7cbd9e6b25a9850fd07d7c5 Mon Sep 17 00:00:00 2001 From: Danni Luo <danni.luo@utsouthwestern.edu> Date: Wed, 20 Jun 2018 15:44:38 -0500 Subject: [PATCH] change footer width --- vizapp/ui.R | 23 ++++++++++++++--------- vizapp/www/style.css | 1 + 2 files changed, 15 insertions(+), 9 deletions(-) diff --git a/vizapp/ui.R b/vizapp/ui.R index defef96..d2a1c61 100755 --- a/vizapp/ui.R +++ b/vizapp/ui.R @@ -26,13 +26,18 @@ shinyUI(list( uiOutput('ui_gsea') ) ), - fluidRow(style = "margin-top:40px", tags$footer(class = "footer", - div(class = "container", - style = "padding-bottom:0; margin-bottom:0", - p(icon("envelope", lib = "glyphicon"), - "brandi.cantarel@utsouthwestern.edu | @ UT Southwestern Medical Center", - style = "margin-bottom:-40px;") - ) - ) - ) + fluidRow(class = "ftrow", + style = "margin-top:40px; margin-left:0", + tags$footer( + class = "footer", + div( + class = "container", + style = "padding-bottom:0; margin-bottom:0", + p( + icon("envelope", lib = "glyphicon"), + "brandi.cantarel@utsouthwestern.edu | @ UT Southwestern Medical Center", + style = "margin-bottom:-40px;" + ) + ) + )) )) diff --git a/vizapp/www/style.css b/vizapp/www/style.css index f16eeff..f0744fb 100755 --- a/vizapp/www/style.css +++ b/vizapp/www/style.css @@ -301,6 +301,7 @@ input[type="number"] { line-height: 60px; /* Vertically center the text there */ background-color: #f5f5f5; } + body > .container { padding: 60px 15px 0; } -- GitLab