From 356ab4bffd3f4d8e8d6788b1dad020990b2f3c30 Mon Sep 17 00:00:00 2001 From: Risto Lahtela <24460436+AuroraLS3@users.noreply.github.com> Date: Sun, 4 Jul 2021 11:12:58 +0300 Subject: [PATCH] Fixed container fluid padding missing, causing odd feeling The page felt like something was "off" and the missing padding caused that. --- Plan/common/src/main/resources/assets/plan/web/css/style.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Plan/common/src/main/resources/assets/plan/web/css/style.css b/Plan/common/src/main/resources/assets/plan/web/css/style.css index d51e4e05b..78c8d42c4 100644 --- a/Plan/common/src/main/resources/assets/plan/web/css/style.css +++ b/Plan/common/src/main/resources/assets/plan/web/css/style.css @@ -1248,4 +1248,9 @@ body.sidebar-hidden .navbar-nav { .sidebar .nav-item .collapse { z-index: 2; +} + +.container, .container-fluid, .container-sm, .container-md, .container-lg, .container-xl { + padding-left: 1.5rem; + padding-right: 1.5rem; } \ No newline at end of file