Added SideNav component.

This commit is contained in:
Mike Cao 2023-03-23 11:46:49 -07:00
parent 1666e5e3af
commit c2789d70bc
14 changed files with 115 additions and 39 deletions

View file

@ -0,0 +1,17 @@
.container {
display: grid;
grid-template-columns: max-content 1fr;
grid-template-rows: 1fr;
}
.menu {
display: flex;
flex-direction: column;
width: 200px;
padding: 40px 0;
}
.content {
display: flex;
flex-direction: column;
}