index.module.scss 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. .C2routing {
  2. :global {
  3. .sider {
  4. width: 100%;
  5. height: 100%;
  6. display: flex;
  7. .siderLeft {
  8. width: 350px;
  9. height: 100%;
  10. display: flex;
  11. }
  12. .siderRight {
  13. width: 0;
  14. flex: 1;
  15. height: 100%;
  16. }
  17. }
  18. .ant-table-cell {
  19. padding: 8px !important;
  20. }
  21. }
  22. }
  23. .C2siderLeftTree {
  24. width: 100%;
  25. margin-right: 20px;
  26. background-color: var(--boxBcaColor);
  27. border-radius: 10px;
  28. padding: 24px;
  29. padding-top: 15px;
  30. :global {
  31. .C2siderLeftTree1 {
  32. margin-bottom: 20px;
  33. }
  34. .C2siderLeftTree2 {
  35. height: calc(100% - 52px);
  36. overflow-y: auto;
  37. .site-tree-search-value {
  38. color: red;
  39. font-weight: 700;
  40. }
  41. .ant-tree {
  42. background-color: var(--boxBcaColor);
  43. min-height: 100%;
  44. }
  45. .ant-tree-title {
  46. font-size: 18px;
  47. }
  48. .ant-tree-title span {
  49. font-size: 18px;
  50. }
  51. .ant-tree-node-selected {
  52. padding: 4px 8px !important;
  53. background-color: var(--txtColor) !important;
  54. .ant-tree-title span {
  55. color: #fff !important;
  56. }
  57. }
  58. .NODATA {
  59. display: flex;
  60. flex-direction: column;
  61. justify-content: center;
  62. align-items: center;
  63. color: #666666;
  64. font-size: 16px;
  65. height: 100%;
  66. // img {
  67. // width: 150px;
  68. // }
  69. & > p {
  70. margin-bottom: 10px;
  71. }
  72. div {
  73. width: 80%;
  74. margin-top: 8%;
  75. display: flex;
  76. justify-content: space-around;
  77. }
  78. }
  79. }
  80. }
  81. }