From 11bc1c952790b1941a8a2e10ab6c8ebc90d1d9c7 Mon Sep 17 00:00:00 2001 From: spokenbird Date: Thu, 14 Dec 2023 12:59:59 -0800 Subject: [PATCH] Fix spacing issue between footer and main content --- .../resources/static/assets/css/custom.css | 25 ++++++++++--------- 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/src/main/resources/static/assets/css/custom.css b/src/main/resources/static/assets/css/custom.css index d7cabf06b..122b3bfe8 100644 --- a/src/main/resources/static/assets/css/custom.css +++ b/src/main/resources/static/assets/css/custom.css @@ -13,6 +13,10 @@ body, background-color: var(--light); } +body { + margin-bottom: 0; +} + .subflow-list__item-actions { margin-left: 3rem; font-size: 16px; @@ -350,16 +354,6 @@ input[type="number"] { background-color: var(--primary); } -.main-footer-la { - position: absolute; - left: 0%; - right: 0%; - top: 0%; - bottom: 0%; - - background: #00284D; -} - .center { display: block; margin-left: auto !important; @@ -441,7 +435,7 @@ p.grey-text { } .page-wrapper { - padding-bottom: 140px; + padding-bottom: 0; } .clipboard-icon { @@ -459,4 +453,11 @@ p.grey-text { button.button.button--secondary{ margin-left: 0; -} \ No newline at end of file +} + +.main-footer { + position: static; +} + + +