umami/components/common/Table.module.css
2020-08-07 20:36:57 -07:00

34 lines
436 B
CSS

.table {
display: flex;
flex-direction: column;
}
.header {
display: flex;
}
.head {
font-size: var(--font-size-small);
font-weight: 600;
line-height: 40px;
flex: 1;
border-bottom: 1px solid var(--gray300);
}
.body {
display: flex;
flex-direction: column;
}
.row {
display: flex;
border-bottom: 1px solid var(--gray300);
padding: 10px 0;
}
.cell {
display: flex;
align-items: flex-start;
flex: 1;
}