index.module.scss 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. .page {
  2. display: flex;
  3. gap: 40px;
  4. min-height: calc(100vh - 60px - 50px - 96px);
  5. }
  6. .pageTools {
  7. flex: 1;
  8. :global {
  9. .ant-btn {
  10. font-size: 12px;
  11. border-radius: 5px;
  12. & + .ant-btn {
  13. margin-left: 10px;
  14. }
  15. }
  16. }
  17. }
  18. .sidebar {
  19. position: relative;
  20. flex-shrink: 0;
  21. width: 338px;
  22. min-height: 100%;
  23. border-radius: 2px;
  24. background: rgba(165, 181, 210, 0.1);
  25. :global {
  26. .ant-tree {
  27. background: none;
  28. .ant-tree-treenode-disabled .ant-tree-node-content-wrapper {
  29. cursor: initial;
  30. }
  31. }
  32. .ant-tree-treenode {
  33. padding: 0 15px;
  34. }
  35. .ant-tree-title {
  36. color: black !important;
  37. }
  38. }
  39. }
  40. .sidebarHeader {
  41. display: flex;
  42. align-items: center;
  43. justify-content: space-between;
  44. padding: 17px 20px;
  45. font-size: 16px;
  46. :global {
  47. .ant-btn {
  48. font-size: 12px;
  49. background: var(--second-color);
  50. }
  51. }
  52. }
  53. .container {
  54. position: relative;
  55. padding-right: 40px;
  56. }
  57. .containerTitle {
  58. font-size: 16px;
  59. }
  60. .tableItem {
  61. display: flex;
  62. gap: 30px;
  63. margin-top: 30px;
  64. line-height: 30px;
  65. }
  66. .tableItemLabel {
  67. flex-shrink: 0;
  68. width: 210px;
  69. text-align: right;
  70. }
  71. .tableItemInner {
  72. min-width: 600px;
  73. }