fix(channel): mobile jump bar fixed

pull/1049/head
trashtemp 2021-12-25 11:33:30 +01:00
parent 12c82da66d
commit 1618fdef21
1 changed files with 6 additions and 1 deletions

View File

@ -17,6 +17,12 @@ export const Bar = styled.div<{ position: "top" | "bottom"; accent?: boolean }>`
props.position === "bottom" &&
css`
top: -26px;
${() =>
isTouchscreenDevice &&
css`
top: -32px;
`}
`}
height: 28px;
@ -71,7 +77,6 @@ export const Bar = styled.div<{ position: "top" | "bottom"; accent?: boolean }>`
isTouchscreenDevice &&
css`
height: 34px;
/*top: -32px;*/
padding: 0 12px;
`}
}