Преглед на файлове

fix: horizontal scroll bar appears on SiderMenu with light navTheme (#3381)

* fix: horizontal scroll bar appears on SiderMenu with light navTheme

* a better solution
何乐 преди 7 години
родител
ревизия
a772401309
променени са 1 файла, в които са добавени 12 реда и са изтрити 3 реда
  1. 12 3
      src/components/SiderMenu/index.less

+ 12 - 3
src/components/SiderMenu/index.less

@@ -35,9 +35,18 @@
     position: fixed;
     top: 0;
     left: 0;
-    :global(.ant-menu-root) {
-      overflow-y: auto;
-      height: ~'calc(100vh - @{nav-header-height})';
+    :global {
+      .ant-menu-root {
+        overflow-y: auto;
+        height: ~'calc(100vh - @{nav-header-height})';
+      }
+      .ant-menu-inline {
+        border-right: 0;
+        .ant-menu-item,
+        .ant-menu-submenu-title {
+          width: 100%;
+        }
+      }
     }
   }
   &.light {