umami/components/common/Table.module.css

56 lines
728 B
CSS
Raw Normal View History

.table {
2020-08-07 09:24:01 +02:00
display: flex;
flex-direction: column;
}
2022-03-02 04:28:44 +01:00
.table label {
display: none;
font-size: var(--font-size-xsmall);
font-weight: bold;
}
2020-08-07 09:24:01 +02:00
.header {
2020-08-18 07:47:58 +02:00
border-bottom: 1px solid var(--gray300);
2020-08-07 09:24:01 +02:00
}
.head {
font-size: var(--font-size-small);
font-weight: 600;
line-height: 40px;
}
2020-08-07 11:27:12 +02:00
.body {
position: relative;
2020-08-07 11:27:12 +02:00
display: flex;
flex-direction: column;
}
2020-08-07 09:24:01 +02:00
.row {
border-bottom: 1px solid var(--gray300);
padding: 10px 0;
}
.cell {
display: flex;
2022-03-02 04:28:44 +01:00
flex-direction: column;
2020-08-07 09:24:01 +02:00
align-items: flex-start;
}
2022-03-02 04:28:44 +01:00
@media only screen and (max-width: 992px) {
.table label {
display: block;
}
.header {
display: none;
}
.row {
flex-direction: column;
}
.cell {
margin-bottom: 20px;
}
}