Updated: Organised dashboard modules

This commit is contained in:
Llewellyn D'souza
2022-01-06 18:00:34 +05:30
parent ef9ecc36f9
commit dde5d85f6d
8 changed files with 48 additions and 33 deletions

View File

@@ -0,0 +1,9 @@
import styles from './sidebar.module.css';
export default function Sidebar() {
return (
<div className={styles.navSidebar}>
<div className={styles.sidebarBranding}>Plaidware</div>
</div>
);
}

View File

@@ -0,0 +1,15 @@
.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;
}