index.module.scss 461 B

1234567891011121314151617181920212223242526272829303132
  1. .pageTools {
  2. flex: 1;
  3. display: flex;
  4. justify-content: space-between;
  5. :global {
  6. .ant-btn {
  7. font-size: 12px;
  8. border-radius: 5px;
  9. & + .ant-btn {
  10. margin-left: 10px;
  11. }
  12. }
  13. }
  14. }
  15. .secondButton {
  16. background: var(--second-color);
  17. }
  18. .pageToolsRight {
  19. display: flex;
  20. align-items: center;
  21. gap: 15px;
  22. :global {
  23. .ant-input-affix-wrapper-lg {
  24. font-size: 12px;
  25. }
  26. }
  27. }