From 127afdb5c1ec5e7c73f245a7d292d64fcec22299 Mon Sep 17 00:00:00 2001 From: dstrukt Date: Thu, 13 Jan 2022 03:29:38 -0800 Subject: [PATCH] Store-Centric Minor Tweaks (#3276) * padding above store selector + left & right content padding * Adapt vertical spacing for content area Co-authored-by: Dennis Reimann --- BTCPayServer/wwwroot/main/layout.css | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/BTCPayServer/wwwroot/main/layout.css b/BTCPayServer/wwwroot/main/layout.css index 1c6d16338..ad3d47007 100644 --- a/BTCPayServer/wwwroot/main/layout.css +++ b/BTCPayServer/wwwroot/main/layout.css @@ -391,7 +391,7 @@ #StoreSelector { order: 2; - margin-top: var(--btcpay-space-s); + margin-top: var(--btcpay-space-m); width: 100%; } @@ -410,17 +410,17 @@ } #mainContent > section { - padding: 4.65rem var(--btcpay-space-l); + padding: 5rem var(--btcpay-space-xl); } #mainContent > section > .container, .btcpay-footer > .container { margin: 0; - max-width: min(1140px, calc(100vw - var(--sidebar-width) - (2 * var(--btcpay-space-l)) - 1rem)); /* 1rem for scrollbar */ + max-width: min(1140px, calc(100vw - var(--sidebar-width) - (2 * var(--btcpay-space-xl)) - 1rem)); /* 1rem for scrollbar */ } .btcpay-footer { - padding-left: var(--btcpay-space-l); - padding-right: var(--btcpay-space-l); + padding-left: var(--btcpay-space-xl); + padding-right: var(--btcpay-space-xl); } }