2020-08-07 08:02:24 +02:00
|
|
|
.table {
|
2020-08-07 09:24:01 +02:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2020-08-07 08:02:24 +02:00
|
|
|
}
|
|
|
|
|
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 {
|
2020-08-11 04:54:03 +02:00
|
|
|
position: relative;
|
2020-08-07 11:27:12 +02:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2020-08-11 04:54:03 +02:00
|
|
|
}
|
|
|
|
|
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;
|
2020-08-07 08:02:24 +02:00
|
|
|
}
|
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;
|
|
|
|
}
|
|
|
|
}
|