index.less 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. .layout {
  2. position: relative;
  3. box-sizing: border-box;
  4. width: 1340px;
  5. height: 100%;
  6. margin: 0 auto;
  7. padding: 20px 0px;
  8. text-decoration: none;
  9. user-select: none;
  10. }
  11. :global {
  12. .ant-drawer-content {
  13. overflow: visible;
  14. // border-radius: 10px;
  15. background: transparent;
  16. }
  17. .ant-drawer-content-wrapper {
  18. // border-radius: 10px;
  19. }
  20. .ant-notification-notice-icon {
  21. top: 30px;
  22. }
  23. }
  24. .header {
  25. display: flex;
  26. align-items: center;
  27. justify-content: space-between;
  28. box-sizing: border-box;
  29. height: 75px;
  30. padding: 15px 0 20px 0;
  31. .title {
  32. display: flex;
  33. align-items: baseline;
  34. .project {
  35. display: flex;
  36. flex-direction: column;
  37. color: #000;
  38. font-weight: 600;
  39. font-size: 24px;
  40. cursor: pointer;
  41. .projectName {
  42. color: #c4c4c4;
  43. font-size: 14px;
  44. }
  45. }
  46. }
  47. .right {
  48. display: flex;
  49. align-items: center;
  50. .picture {
  51. width: 40px;
  52. height: 40px;
  53. margin-right: 24px;
  54. // background-color: #4f4f4f;
  55. // border-radius: 40px;
  56. }
  57. .notify {
  58. margin-right: 30px;
  59. cursor: pointer;
  60. :global {
  61. .ant-notification-notice-message {
  62. color: #656872;
  63. font-size: 14px;
  64. }
  65. .ant-notification-notice-description {
  66. color: #c4c4c4;
  67. }
  68. }
  69. }
  70. }
  71. }