Преглед на файлове

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`