1234567891011121314151617181920212223242526272829303132 |
- .pageTools {
- flex: 1;
- display: flex;
- justify-content: space-between;
- :global {
- .ant-btn {
- font-size: 12px;
- border-radius: 5px;
- & + .ant-btn {
- margin-left: 10px;
- }
- }
- }
- }
- .secondButton {
- background: var(--second-color);
- }
- .pageToolsRight {
- display: flex;
- align-items: center;
- gap: 15px;
- :global {
- .ant-input-affix-wrapper-lg {
- font-size: 12px;
- }
- }
- }
|