parent
5313a8f5dd
commit
f0648bcaea
@ -0,0 +1,44 @@
|
||||
.ant-collapse-content-box {
|
||||
padding: 0 !important;
|
||||
}
|
||||
|
||||
.ant-table-body {
|
||||
@apply max-w-[100vw];
|
||||
}
|
||||
|
||||
.table__wrapper .ant-table-row {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.table__title {
|
||||
padding: 0 1rem;
|
||||
display: flex;
|
||||
align-items: baseline;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.title__content {
|
||||
font-size: 16px;
|
||||
font-weight: 600;
|
||||
flex-grow: 1;
|
||||
display: flex;
|
||||
column-gap: 12px;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.table__badge {
|
||||
background-color: rgba(51, 51, 51, 0.05);
|
||||
}
|
||||
|
||||
.ant-table-pagination.ant-pagination {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.ant-table.ant-table-small .ant-table-title,
|
||||
.ant-table.ant-table-small .ant-table-footer,
|
||||
.ant-table.ant-table-small .ant-table-thead > tr > th,
|
||||
.ant-table.ant-table-small .ant-table-tbody > tr > td,
|
||||
.ant-table.ant-table-small tfoot > tr > th,
|
||||
.ant-table.ant-table-small tfoot > tr > td {
|
||||
padding: 4px;
|
||||
}
|
||||
@ -1,10 +1,12 @@
|
||||
import { WithAuth } from "../WithAuth";
|
||||
import { MapComponent } from "../Map/MapComponent";
|
||||
import { Table } from "../modules/Table/Table";
|
||||
|
||||
export function MapPage() {
|
||||
return (
|
||||
<WithAuth>
|
||||
<MapComponent />
|
||||
<Table />
|
||||
</WithAuth>
|
||||
);
|
||||
}
|
||||
|
||||
Loading…
Reference in new issue