From ded91d4a41e94ce25cdc122962182db247a7e84e Mon Sep 17 00:00:00 2001 From: uncoolzero <107518216+uncoolzero@users.noreply.github.com> Date: Wed, 23 Aug 2023 16:01:10 -0300 Subject: [PATCH] Basin UI - Fixed off-screen Home links on mobile --- projects/dex-ui/src/pages/Home.tsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/projects/dex-ui/src/pages/Home.tsx b/projects/dex-ui/src/pages/Home.tsx index dce021a511..601fb38bda 100644 --- a/projects/dex-ui/src/pages/Home.tsx +++ b/projects/dex-ui/src/pages/Home.tsx @@ -168,8 +168,13 @@ const Boxes = styled.div` flex-direction: column; gap: 12px; justify-content: space-around; + position: fixed; + bottom: 12px; + width: calc(100vw - 24px); @media (min-width: ${size.mobile}) { flex-direction: row; + position: relative; + bottom: 0px; gap: 48px; padding: 0 48px; width: 100vw;