You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
956 B
39 lines
956 B
import type { CSSObject } from '@ant-design/cssinjs';
|
|
import type { GenerateStyle } from '../../theme/internal';
|
|
import type { TableToken } from './index';
|
|
|
|
const genPaginationStyle: GenerateStyle<TableToken, CSSObject> = (token) => {
|
|
const { componentCls, antCls } = token;
|
|
return {
|
|
[`${componentCls}-wrapper`]: {
|
|
// ========================== Pagination ==========================
|
|
[`${componentCls}-pagination${antCls}-pagination`]: {
|
|
margin: `${token.margin}px 0`,
|
|
},
|
|
|
|
[`${componentCls}-pagination`]: {
|
|
display: 'flex',
|
|
flexWrap: 'wrap',
|
|
rowGap: token.paddingXS,
|
|
|
|
'> *': {
|
|
flex: 'none',
|
|
},
|
|
|
|
'&-left': {
|
|
justifyContent: 'flex-start',
|
|
},
|
|
|
|
'&-center': {
|
|
justifyContent: 'center',
|
|
},
|
|
|
|
'&-right': {
|
|
justifyContent: 'flex-end',
|
|
},
|
|
},
|
|
},
|
|
};
|
|
};
|
|
|
|
export default genPaginationStyle;
|
|
|