umami/components/Table.module.css

28 lines
339 B
CSS
Raw Normal View History

.table {
2020-08-07 09:24:01 +02:00
display: flex;
flex-direction: column;
}
2020-08-07 09:24:01 +02:00
.header {
display: flex;
}
.head {
font-size: var(--font-size-small);
font-weight: 600;
line-height: 40px;
flex: 1;
}
.row {
display: flex;
border-bottom: 1px solid var(--gray300);
padding: 10px 0;
}
.cell {
display: flex;
align-items: flex-start;
flex: 1;
}