Setting.razor.less 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. @import '~antd/es/style/themes/default.less';
  2. .main__b__2 {
  3. display: flex;
  4. width: 100%;
  5. height: 100%;
  6. padding-top: 16px;
  7. padding-bottom: 16px;
  8. overflow: auto;
  9. background-color: @menu-bg;
  10. .leftMenu {
  11. width: 224px;
  12. border-right: @border-width-base @border-style-base @border-color-split;
  13. :global {
  14. .ant-menu-inline {
  15. border: none;
  16. }
  17. .ant-menu:not(.ant-menu-horizontal) .ant-menu-item-selected {
  18. font-weight: bold;
  19. }
  20. }
  21. }
  22. .right__b__0 {
  23. flex: 1;
  24. padding-top: 8px;
  25. padding-right: 40px;
  26. padding-bottom: 8px;
  27. padding-left: 40px;
  28. .title {
  29. margin-bottom: 12px;
  30. color: @heading-color;
  31. font-weight: 500;
  32. font-size: 20px;
  33. line-height: 28px;
  34. }
  35. }
  36. //:global {
  37. .ant-list-split .ant-list-item:last-child {
  38. border-bottom: 1px solid @border-color-split;
  39. }
  40. .ant-list-item {
  41. padding-top: 14px;
  42. padding-bottom: 14px;
  43. }
  44. //}
  45. }
  46. //:global {
  47. .ant-list-item-meta {
  48. // 账号绑定图标
  49. .taobao {
  50. display: block;
  51. color: #ff4000;
  52. font-size: 48px;
  53. line-height: 48px;
  54. border-radius: @border-radius-base;
  55. }
  56. .dingding {
  57. margin: 2px;
  58. padding: 6px;
  59. color: #fff;
  60. font-size: 32px;
  61. line-height: 32px;
  62. background-color: #2eabff;
  63. border-radius: @border-radius-base;
  64. }
  65. .alipay {
  66. color: #2eabff;
  67. font-size: 48px;
  68. line-height: 48px;
  69. border-radius: @border-radius-base;
  70. }
  71. }
  72. // 密码强度
  73. font.strong {
  74. color: @success-color;
  75. }
  76. font.medium {
  77. color: @warning-color;
  78. }
  79. font.weak {
  80. color: @error-color;
  81. }
  82. //}
  83. @media screen and (max-width: @screen-md) {
  84. .main__b__2 {
  85. flex-direction: column;
  86. .leftMenu {
  87. width: 100%;
  88. border: none;
  89. }
  90. .right__b__0 {
  91. padding: 40px;
  92. }
  93. }
  94. }