浏览代码

hide vscode btn on mobile

AykutSarac 2 年之前
父节点
当前提交
ca0bb8b32c
共有 1 个文件被更改,包括 4 次插入0 次删除
  1. 4 0
      src/containers/Home/styles.tsx

+ 4 - 0
src/containers/Home/styles.tsx

@@ -143,6 +143,10 @@ export const StyledSponsorButton = styled(StyledButton)<{ isBlue?: boolean }>`
       color: white;
     }
   }
+
+  @media only screen and (max-width: 768px) {
+    display: ${({ isBlue }) => isBlue && "none"};
+  }
 `;
 
 export const StyledFeaturesSection = styled.section`