فهرست منبع

fix:小屏幕显示不完全 (#3726)

* 修复小屏幕显示不完全问题

屏幕尺寸小于1200时,顶部菜单右侧内容被遮挡

* Update index.js

* 格式化代码
yaphet 6 سال پیش
والد
کامیت
3708b6f92f
1فایلهای تغییر یافته به همراه5 افزوده شده و 1 حذف شده
  1. 5 1
      src/components/TopNavHeader/index.js

+ 5 - 1
src/components/TopNavHeader/index.js

@@ -13,7 +13,11 @@ export default class TopNavHeader extends PureComponent {
 
   static getDerivedStateFromProps(props) {
     return {
-      maxWidth: (props.contentWidth === 'Fixed' ? 1200 : window.innerWidth) - 280 - 165 - 40,
+      maxWidth:
+        (props.contentWidth === 'Fixed' && window.innerWidth > 1200 ? 1200 : window.innerWidth) -
+        280 -
+        120 -
+        40,
     };
   }