2020-08-07 06:02:24 +00:00
|
|
|
.table {
|
2020-08-07 07:24:01 +00:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
2020-08-11 02:54:03 +00:00
|
|
|
flex: 1;
|
2020-08-07 06:02:24 +00:00
|
|
|
}
|
|
|
|
|
|
2020-08-07 07:24:01 +00:00
|
|
|
.header {
|
|
|
|
|
display: flex;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.head {
|
|
|
|
|
font-size: var(--font-size-small);
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
line-height: 40px;
|
|
|
|
|
flex: 1;
|
2020-08-08 03:36:57 +00:00
|
|
|
border-bottom: 1px solid var(--gray300);
|
2020-08-07 07:24:01 +00:00
|
|
|
}
|
|
|
|
|
|
2020-08-07 09:27:12 +00:00
|
|
|
.body {
|
2020-08-11 02:54:03 +00:00
|
|
|
position: relative;
|
2020-08-07 09:27:12 +00:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
2020-08-11 02:54:03 +00:00
|
|
|
flex: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.body:empty:before {
|
|
|
|
|
content: 'No data available';
|
|
|
|
|
color: var(--gray500);
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 50%;
|
|
|
|
|
left: 50%;
|
|
|
|
|
transform: translate(-50%, -50%);
|
2020-08-07 09:27:12 +00:00
|
|
|
}
|
|
|
|
|
|
2020-08-07 07:24:01 +00:00
|
|
|
.row {
|
|
|
|
|
display: flex;
|
|
|
|
|
border-bottom: 1px solid var(--gray300);
|
|
|
|
|
padding: 10px 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cell {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: flex-start;
|
|
|
|
|
flex: 1;
|
2020-08-07 06:02:24 +00:00
|
|
|
}
|