style.css 729 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. ::-webkit-scrollbar {
  2. background-color: #fff;
  3. width: 16px;
  4. }
  5. /* background of the scrollbar except button or resizer */
  6. ::-webkit-scrollbar-track {
  7. background-color: #fff;
  8. }
  9. ::-webkit-scrollbar-track:hover {
  10. background-color: #f4f4f4;
  11. }
  12. /* scrollbar itself */
  13. ::-webkit-scrollbar-thumb {
  14. background-color: #babac0;
  15. border-radius: 16px;
  16. border: 5px solid #fff;
  17. }
  18. ::-webkit-scrollbar-thumb:hover {
  19. background-color: #a0a0a5;
  20. border: 4px solid #f4f4f4;
  21. }
  22. #app {
  23. height: 100%;
  24. }
  25. .content-layout {
  26. width: 100%;
  27. max-width: 1460px;
  28. margin: 0 auto;
  29. padding: 0 90px;
  30. position: relative;
  31. }
  32. body .ant-modal-confirm .ant-modal-body {
  33. padding: 26px;
  34. }
  35. body .ant-dropdown {
  36. min-width: auto !important;
  37. }