Parcourir la source

修改右侧辅助信息高度

zhangxc il y a 6 ans
Parent
commit
ceaaf44094
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2 2
      src/components/PushItems/index.jsx

+ 2 - 2
src/components/PushItems/index.jsx

@@ -128,11 +128,11 @@ class PushItems extends Component {
   }
 
   componentDidMount() {
-    const height = getWindowInnerHeight() - 180;
+    const height = getWindowInnerHeight() - 200;
     this.$cont.current.style.height = height + "px";
 
     windowEventHandler('resize', ()=>{
-      const height = getWindowInnerHeight() - 180;
+      const height = getWindowInnerHeight() - 200;
       this.$cont.current.style.height = height + "px";
     });
   }