diff --git a/frontend/mms-Admin/src/pages/Dashboard/Tasks/CreateTask/CreateTask.module.scss b/frontend/mms-Admin/src/pages/Dashboard/Tasks/CreateTask/CreateTask.module.scss index 6d7c736..1fe8151 100644 --- a/frontend/mms-Admin/src/pages/Dashboard/Tasks/CreateTask/CreateTask.module.scss +++ b/frontend/mms-Admin/src/pages/Dashboard/Tasks/CreateTask/CreateTask.module.scss @@ -4,6 +4,44 @@ position: relative; height: calc(100vh - var(--topNavbarHeight)); + .sideBarSection { + width: auto; + + .noUserFound { + width: 100%; + + h6 { + font-family: var(--semiBold); + font-size: 1rem; + color: var(--black2TextColor); + margin: 0; + } + } + + .filterAndSearchDiv { + width: 100%; + justify-content: flex-end; + gap: 1rem; + min-height: 3rem; + + .title { + font-family: var(--semiBold); + font-size: 1rem; + color: var(--black2TextColor); + margin: 0; + } + + .searchWrapper { + flex-grow: 1; + } + + .closeIcon { + width: 1rem; + cursor: pointer; + } + } + } + .mainSection { gap: 1.5rem; flex-grow: 1; @@ -91,44 +129,6 @@ } } } - - .sideBarSection { - width: auto; - - .noUserFound { - width: 100%; - - h6 { - font-family: var(--semiBold); - font-size: 1rem; - color: var(--black2TextColor); - margin: 0; - } - } - - .filterAndSearchDiv { - width: 100%; - justify-content: flex-end; - gap: 1rem; - min-height: 3rem; - - .title { - font-family: var(--semiBold); - font-size: 1rem; - color: var(--black2TextColor); - margin: 0; - } - - .searchWrapper { - flex-grow: 1; - } - - .closeIcon { - width: 1rem; - cursor: pointer; - } - } - } } @media all and (min-width: 768px) { diff --git a/frontend/mms-Admin/src/pages/Dashboard/Tasks/EditTask/EditTask.module.scss b/frontend/mms-Admin/src/pages/Dashboard/Tasks/EditTask/EditTask.module.scss index e36efb7..6c3cf1c 100644 --- a/frontend/mms-Admin/src/pages/Dashboard/Tasks/EditTask/EditTask.module.scss +++ b/frontend/mms-Admin/src/pages/Dashboard/Tasks/EditTask/EditTask.module.scss @@ -4,6 +4,33 @@ position: relative; height: calc(100vh - var(--topNavbarHeight)); + .sideBarSection { + width: auto; + + .filterAndSearchDiv { + width: 100%; + justify-content: flex-end; + gap: 1rem; + min-height: 3rem; + + .title { + font-family: var(--semiBold); + font-size: 1rem; + color: var(--black2TextColor); + margin: 0; + } + + .searchWrapper { + flex-grow: 1; + } + + .closeIcon { + width: 1rem; + cursor: pointer; + } + } + } + .mainSection { gap: 1.5rem; flex-grow: 1; @@ -86,33 +113,6 @@ } } } - - .sideBarSection { - width: auto; - - .filterAndSearchDiv { - width: 100%; - justify-content: flex-end; - gap: 1rem; - min-height: 3rem; - - .title { - font-family: var(--semiBold); - font-size: 1rem; - color: var(--black2TextColor); - margin: 0; - } - - .searchWrapper { - flex-grow: 1; - } - - .closeIcon { - width: 1rem; - cursor: pointer; - } - } - } } @media all and (min-width: 768px) { diff --git a/frontend/mms-Admin/src/pages/Dashboard/Tasks/TaskDetails/TaskDetails.module.scss b/frontend/mms-Admin/src/pages/Dashboard/Tasks/TaskDetails/TaskDetails.module.scss index b2c3786..5305635 100644 --- a/frontend/mms-Admin/src/pages/Dashboard/Tasks/TaskDetails/TaskDetails.module.scss +++ b/frontend/mms-Admin/src/pages/Dashboard/Tasks/TaskDetails/TaskDetails.module.scss @@ -64,6 +64,7 @@ .summaryDiv { background-color: var(--dashboardSummaryCardBgColor); + .heading { align-items: center; padding: 0.5rem; @@ -119,9 +120,6 @@ margin-left: auto; } } - - .body { - } } }