From e7e8dbf23d868e0884018ee7072289a37a81704b Mon Sep 17 00:00:00 2001 From: Paul Makles Date: Tue, 4 Jan 2022 14:01:45 +0000 Subject: [PATCH] fix: fixed jump to bottom bar positioning --- src/components/common/messaging/bars/JumpToBottom.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/common/messaging/bars/JumpToBottom.tsx b/src/components/common/messaging/bars/JumpToBottom.tsx index 726ae61f..45231f25 100644 --- a/src/components/common/messaging/bars/JumpToBottom.tsx +++ b/src/components/common/messaging/bars/JumpToBottom.tsx @@ -22,7 +22,7 @@ export const Bar = styled.div<{ position: "top" | "bottom"; accent?: boolean }>` ${(props) => props.position === "bottom" && css` - top: 65px; + top: -28px; ${() => isTouchscreenDevice &&