Added grid layout components.

This commit is contained in:
Mike Cao 2020-10-09 20:37:24 -07:00
parent e30f2dfb44
commit 910481e629
9 changed files with 154 additions and 72 deletions

View file

@ -2,13 +2,20 @@
font-size: var(--font-size-xsmall);
}
.header {
display: flex;
align-items: center;
justify-content: space-between;
line-height: 40px;
font-weight: 600;
}
.row {
display: flex;
border-bottom: 1px solid var(--gray300);
}
.body {
height: 600px;
overflow: auto;
}