12345678910111213141516171819202122232425262728293031323334353637383940 |
- "use strict";
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports.default = void 0;
- var _cssinjs = require("@ant-design/cssinjs");
- const genPaginationStyle = token => {
- const {
- componentCls,
- antCls,
- margin
- } = token;
- return {
- [`${componentCls}-wrapper`]: {
- // ========================== Pagination ==========================
- [`${componentCls}-pagination${antCls}-pagination`]: {
- margin: `${(0, _cssinjs.unit)(margin)} 0`
- },
- [`${componentCls}-pagination`]: {
- display: 'flex',
- flexWrap: 'wrap',
- rowGap: token.paddingXS,
- '> *': {
- flex: 'none'
- },
- '&-left': {
- justifyContent: 'flex-start'
- },
- '&-center': {
- justifyContent: 'center'
- },
- '&-right': {
- justifyContent: 'flex-end'
- }
- }
- }
- };
- };
- var _default = exports.default = genPaginationStyle;
|