소스 검색

hide bar on mobile

AykutSarac 2 년 전
부모
커밋
b1de175b9d
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      src/containers/Editor/BottomBar.tsx

+ 4 - 0
src/containers/Editor/BottomBar.tsx

@@ -25,6 +25,10 @@ const StyledBottomBar = styled.div`
   max-height: 28px;
   height: 28px;
   padding: 0 6px;
+
+  @media only screen and (max-width: 768px) {
+    display: none;
+  }
 `;
 
 const StyledLeft = styled.div`