From c40943bdcea566b4c926efe01df599d87d4edf91 Mon Sep 17 00:00:00 2001 From: oof2win2 Date: Tue, 5 Oct 2021 00:06:59 +0200 Subject: [PATCH] :bug: Fix sidebar breakpoint for iPad --- src/components/Sidebar/styles.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Sidebar/styles.tsx b/src/components/Sidebar/styles.tsx index 9599dcb..b348f38 100644 --- a/src/components/Sidebar/styles.tsx +++ b/src/components/Sidebar/styles.tsx @@ -14,7 +14,7 @@ export const SidebarWrapper = styled.div` bottom: 0; width: 320px; - @media screen and (max-width: 767px) { + @media screen and (max-width: 768px) { z-index: 100; width: calc(100vw - 100px); transition: transform 0.2s ease-in-out;