Explorar el Código

切换语按钮不显示

当屏幕过小时(13.3寸),菜单过多时,会把语言切换按钮挤到下一行
卖代码的 hace 7 años
padre
commit
8707850997
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/components/TopNavHeader/index.js

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

@@ -9,7 +9,7 @@ export default class TopNavHeader extends PureComponent {
     super(props);
 
     this.state = {
-      maxWidth: (props.contentWidth === 'Fixed' ? 1200 : window.innerWidth) - 330 - 165 - 4,
+      maxWidth: (props.contentWidth === 'Fixed' ? 1200 : window.innerWidth) - 330 - 165 - 4 - 26,
     };
   }