1
0
mirror of https://github.com/kremalicious/umami.git synced 2024-12-21 00:33:39 +01:00
umami/components/common/Table.module.css
2020-10-09 17:58:27 -07:00

31 lines
402 B
CSS

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