From 865a157d8d59ed4f2c35b4e4db32e79116c17a20 Mon Sep 17 00:00:00 2001 From: Vineet Sharma Date: Tue, 28 Jan 2025 00:34:02 +0530 Subject: [PATCH] (fix) O3-4397: The home dashboard container should have a fixed width (#239) --- packages/esm-home-app/src/dashboard/home-dashboard.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/esm-home-app/src/dashboard/home-dashboard.scss b/packages/esm-home-app/src/dashboard/home-dashboard.scss index 5efe828e4..5d6563495 100644 --- a/packages/esm-home-app/src/dashboard/home-dashboard.scss +++ b/packages/esm-home-app/src/dashboard/home-dashboard.scss @@ -11,7 +11,11 @@ margin: 0; // Full vertical height minus the primary navigation menu height height: calc(100vh - 3rem); + // Making space for the left nav menu margin-left: 16rem; + // Ensure the width of the home page dashboard is fixed + // and does not expand based on the width of its children + width: calc(100% - 16rem); background-color: colors.$gray-10; & a {