Merge branch 'feature/fixed_pagination' into 'dev'

pagination fixed to bottom

See merge request spatial/postamates_frontend!51
dev
Anton Vlasov 2 years ago
commit 5622b3fbd6

@ -14,6 +14,10 @@
cursor: pointer;
}
.table__wrapper__fullScreen .ant-table-container {
height: calc(100vh - 98px);
}
.table__title {
padding: 0 1rem;
display: flex;

@ -57,7 +57,10 @@ export const Table = React.memo(
>
<AntdTable
size="small"
className="table__wrapper"
className={twMerge(
"table__wrapper",
tableState.fullScreen && "table__wrapper__fullScreen"
)}
locale={{ emptyText: <Empty description="Нет данных" /> }}
pagination={{
pageSize,

Loading…
Cancel
Save