From 94185c370199ef44e6d57e3695535af6d28f0809 Mon Sep 17 00:00:00 2001 From: Aayush Rohila <112551534+arohilaGL@users.noreply.github.com> Date: Wed, 26 Apr 2023 17:56:14 +0530 Subject: [PATCH] [ACA-4690] added width and max-width to sidebar (#3150) --- .../lib/components/page-layout/page-layout.component.scss | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/projects/aca-shared/src/lib/components/page-layout/page-layout.component.scss b/projects/aca-shared/src/lib/components/page-layout/page-layout.component.scss index 0c5b20304b..8e6a2880d8 100644 --- a/projects/aca-shared/src/lib/components/page-layout/page-layout.component.scss +++ b/projects/aca-shared/src/lib/components/page-layout/page-layout.component.scss @@ -56,6 +56,14 @@ } } + .sidebar { + display: block; + height: 100%; + overflow-y: scroll; + max-width: 350px; + width: 350px; + } + .aca-page-layout-content { @include flex-row; }