index.less 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. .layout {
  2. box-sizing: border-box;
  3. width: 1340px;
  4. height: 100%;
  5. margin: 0 auto;
  6. padding: 20px;
  7. user-select: none;
  8. }
  9. :global {
  10. .ant-drawer-content {
  11. overflow: visible;
  12. // border-radius: 10px;
  13. background: transparent;
  14. }
  15. .ant-drawer-content-wrapper {
  16. // border-radius: 10px;
  17. }
  18. }
  19. .header {
  20. display: flex;
  21. align-items: center;
  22. justify-content: space-between;
  23. box-sizing: border-box;
  24. height: 100px;
  25. padding: 20px 0 40px 0;
  26. .title {
  27. color: #000000;
  28. font-weight: 600;
  29. font-size: 24px;
  30. }
  31. .right {
  32. display: flex;
  33. align-items: center;
  34. .picture {
  35. width: 40px;
  36. height: 40px;
  37. margin-right: 24px;
  38. background-color: #4f4f4f;
  39. border-radius: 40px;
  40. }
  41. .notify {
  42. margin-right: 24px;
  43. cursor: pointer;
  44. :global {
  45. .ant-notification-notice-message {
  46. color: #656872;
  47. font-size: 14px;
  48. }
  49. .ant-notification-notice-description {
  50. color: #c4c4c4;
  51. }
  52. }
  53. }
  54. }
  55. }