From 9b1cc672cd011b03cc36fae1ec1800a144807347 Mon Sep 17 00:00:00 2001 From: James Finch <1347620+JamsRepos@users.noreply.github.com> Date: Mon, 13 May 2024 22:46:36 +0100 Subject: [PATCH] fix: :lipstick: Fixed issue with dashboard leaking outside of the view --- CSS/css-scyfin/scyfin-theme-backdrop.css | 4 ++++ CSS/css-scyfin/scyfin-theme.css | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/CSS/css-scyfin/scyfin-theme-backdrop.css b/CSS/css-scyfin/scyfin-theme-backdrop.css index ac179ac..e6f876b 100644 --- a/CSS/css-scyfin/scyfin-theme-backdrop.css +++ b/CSS/css-scyfin/scyfin-theme-backdrop.css @@ -40,6 +40,10 @@ .layout-desktop .mainDrawerButton { display: none !important; } +/* Fix for dashboard leaking out of the sections */ +.dashboardColumn { + flex-shrink: inherit; +} /* Fix for dashboard drawer button height */ .layout-desktop .dashboardDocument .mainDrawer-scrollContainer { padding-top: 0 !important; diff --git a/CSS/css-scyfin/scyfin-theme.css b/CSS/css-scyfin/scyfin-theme.css index 825dc54..840f90e 100644 --- a/CSS/css-scyfin/scyfin-theme.css +++ b/CSS/css-scyfin/scyfin-theme.css @@ -42,6 +42,10 @@ .layout-desktop .mainDrawerButton { display: none !important; } +/* Fix for dashboard leaking out of the sections */ +.dashboardColumn { + flex-shrink: inherit; +} /* Fix for dashboard drawer button height */ .layout-desktop .dashboardDocument .mainDrawer-scrollContainer { padding-top: 0 !important;