From d19923fed652155802f10034619a4d735fba3559 Mon Sep 17 00:00:00 2001 From: AykutSarac Date: Wed, 6 Apr 2022 22:26:35 +0300 Subject: [PATCH] hide producthunt embed on mobile --- src/components/Producthunt/index.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/components/Producthunt/index.tsx b/src/components/Producthunt/index.tsx index c00de34..8463d8c 100644 --- a/src/components/Producthunt/index.tsx +++ b/src/components/Producthunt/index.tsx @@ -5,6 +5,10 @@ const StyledProducthunt = styled.a` position: fixed; bottom: 12px; right: 12px; + + @media only screen and (max-width: 768px) { + display: none; + } `; const StyledImage = styled.img`