Updated: Organised dashboard modules
This commit is contained in:
9
src/components/Sidebar/index.js
Normal file
9
src/components/Sidebar/index.js
Normal 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>
|
||||
);
|
||||
}
|
||||
15
src/components/Sidebar/sidebar.module.css
Normal file
15
src/components/Sidebar/sidebar.module.css
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user