From 193cca14e6c8134685a4fc8431abaaf4e7ee6d9d Mon Sep 17 00:00:00 2001 From: gauravd2t Date: Tue, 24 Jun 2025 11:33:00 +0530 Subject: [PATCH 1/2] given height and scroll on absolute in mobile view (cherry picked from commit 57b49f48da6785e574fd5e32783e9357dfef36a0) --- src/app/shared/sidebar/page-with-sidebar.component.scss | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/app/shared/sidebar/page-with-sidebar.component.scss b/src/app/shared/sidebar/page-with-sidebar.component.scss index df87cdf0543..8f929de6579 100644 --- a/src/app/shared/sidebar/page-with-sidebar.component.scss +++ b/src/app/shared/sidebar/page-with-sidebar.component.scss @@ -37,6 +37,8 @@ position: absolute; top: 0; width: 100%; + height: 1200px; + overflow: auto; } } } From aaf337077cdb62bdf943848c47dce1a4dff45ba9 Mon Sep 17 00:00:00 2001 From: gauravd2t Date: Mon, 16 Mar 2026 15:54:11 +0530 Subject: [PATCH 2/2] change height to 100% (cherry picked from commit 950bea447b4b8e0a71821dfee329f562f73ac3e8) --- src/app/shared/sidebar/page-with-sidebar.component.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/shared/sidebar/page-with-sidebar.component.scss b/src/app/shared/sidebar/page-with-sidebar.component.scss index 8f929de6579..c79b7fe89aa 100644 --- a/src/app/shared/sidebar/page-with-sidebar.component.scss +++ b/src/app/shared/sidebar/page-with-sidebar.component.scss @@ -37,7 +37,7 @@ position: absolute; top: 0; width: 100%; - height: 1200px; + height: 100%; overflow: auto; } }