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

35 lines
423 B
CSS
Raw Normal View History

2023-08-25 18:54:44 +00:00
.search {
max-width: 300px;
margin: 20px 0;
}
.body {
display: flex;
2023-10-12 07:03:10 +00:00
flex-direction: column;
position: relative;
2023-10-11 17:02:32 +00:00
overflow-x: auto;
}
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;
}
2023-10-12 07:03:10 +00:00
.body > div > div > div {
display: flex;
gap: 10px;
}
2023-08-25 18:54:44 +00:00
.pager {
margin: 20px 0;
}
.status {
display: flex;
align-items: center;
justify-content: center;
min-height: 200px;
2023-08-25 18:54:44 +00:00
}