瀏覽代碼

disable toolbar for mobile

AykutSarac 2 年之前
父節點
當前提交
d98cc4edc0
共有 1 個文件被更改,包括 5 次插入1 次删除
  1. 5 1
      src/containers/Editor/LiveEditor/Tools.tsx

+ 5 - 1
src/containers/Editor/LiveEditor/Tools.tsx

@@ -23,10 +23,14 @@ export const StyledTools = styled.div<{ isWidget: boolean }>`
   @media only screen and (max-width: 768px) {
     display: ${({ isWidget }) => !isWidget && "none"};
   }
+
+  @media only screen and (max-width: 480px) {
+    display: none;
+  }
 `;
 
 const StyledToolElement = styled.button<{ hide?: boolean }>`
-  display: ${({ hide }) => hide ? "none" : "grid"};
+  display: ${({ hide }) => (hide ? "none" : "grid")};
   place-content: center;
   font-size: 20px;
   background: none;