소스 검색

Merge branch 'optimize-zxc' into optimize

zhangxc 6 년 전
부모
커밋
ce03e5515c
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  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";
     });
   }