From 0261e0712c62942332ccef4f99a3a4696d194768 Mon Sep 17 00:00:00 2001 From: Jack Woodgate <67034721+lampy255@users.noreply.github.com> Date: Mon, 4 Sep 2023 10:42:47 +1200 Subject: [PATCH] fix: Safari sidebar animation #5765 (#5766) --- app/components/Sidebar/Right.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/components/Sidebar/Right.tsx b/app/components/Sidebar/Right.tsx index 3d4c7b616..43bf1a9ee 100644 --- a/app/components/Sidebar/Right.tsx +++ b/app/components/Sidebar/Right.tsx @@ -120,7 +120,7 @@ const Position = styled(Flex)` const Sidebar = styled(m.div)<{ $border?: boolean; }>` - display: flex; + display: block; flex-shrink: 0; background: ${s("background")}; max-width: 80%; @@ -129,6 +129,7 @@ const Sidebar = styled(m.div)<{ z-index: 1; ${breakpoint("mobile", "tablet")` + display: flex; position: absolute; top: 0; right: 0;