From 178c9142c2e49a9044ee44eee8e176c9b534f33b Mon Sep 17 00:00:00 2001 From: Llewellyn D'souza Date: Thu, 6 Jan 2022 16:06:16 +0530 Subject: [PATCH] Added: css modules --- src/layouts/dashboard/dashboard.module.css | 39 ++++++++++++++++++++++ src/layouts/placeholder | 0 2 files changed, 39 insertions(+) create mode 100644 src/layouts/dashboard/dashboard.module.css delete mode 100644 src/layouts/placeholder diff --git a/src/layouts/dashboard/dashboard.module.css b/src/layouts/dashboard/dashboard.module.css new file mode 100644 index 0000000..7a1fa79 --- /dev/null +++ b/src/layouts/dashboard/dashboard.module.css @@ -0,0 +1,39 @@ +.dashboardGrid { + width: 100vw; + display: grid; + grid-template-columns: 300px auto; +} + +.navSidebar { + grid-column: 1; + background: #2d373c; + min-height: 100vh; + padding: 40px; +} + +.sidebarBranding { + font-style: normal; + font-weight: bold; + font-size: 36px; + line-height: 44px; + + color: #ffffff; +} + +.mainContent { + grid-column: 2; + display: grid; + grid-template-rows: 100px 50px auto; +} + +.topBar { + grid-row: 1; +} + +.breadcrumbs { + grid-row: 2; +} + +.content { + grid-row: 3; +} diff --git a/src/layouts/placeholder b/src/layouts/placeholder deleted file mode 100644 index e69de29..0000000