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