umami/src/components/common/DataTable.module.css

42 lines
502 B
CSS
Raw Normal View History

.table {
grid-template-rows: repeat(auto-fit, max-content);
}
.table td {
align-items: center;
max-height: max-content;
}
2023-08-25 18:54:44 +00:00
.search {
max-width: 300px;
margin: 20px 0;
}
.action {
justify-content: flex-end;
gap: 5px;
}
.body {
display: flex;
position: relative;
}
2023-08-25 18:54:44 +00:00
.body td {
2023-10-01 23:11:12 +00:00
display: flex;
gap: 10px;
min-height: 70px;
2023-08-25 18:54:44 +00:00
align-items: center;
}
.pager {
margin: 20px 0;
}
.status {
display: flex;
align-items: center;
justify-content: center;
min-height: 200px;
2023-08-25 18:54:44 +00:00
}