From ed2a2e5c44507aadc3a7b78044f26589b80a92ce Mon Sep 17 00:00:00 2001 From: Aswanth Vc <69764494+aswanthabam@users.noreply.github.com> Date: Tue, 5 Nov 2024 18:21:06 +0530 Subject: [PATCH] fix(lc): alignment issue --- .../pages/dashboard/DashboardLC.module.css | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/modules/Dashboard/modules/LearningCircleV2/pages/dashboard/DashboardLC.module.css b/src/modules/Dashboard/modules/LearningCircleV2/pages/dashboard/DashboardLC.module.css index 03f30dded..b5c33d2ed 100644 --- a/src/modules/Dashboard/modules/LearningCircleV2/pages/dashboard/DashboardLC.module.css +++ b/src/modules/Dashboard/modules/LearningCircleV2/pages/dashboard/DashboardLC.module.css @@ -1,7 +1,5 @@ .dashboardLC { - width: 100%; - padding-left: 1.5rem; - padding-right: 1.5rem; + width: 95%; .backLink { display: flex; @@ -131,3 +129,9 @@ } } } + +@media screen and (max-width: 768px) { + .dashboardLC { + width: 100%; + } +}