From 18e89a73535694af5b534da9a5f4e602426968ef Mon Sep 17 00:00:00 2001 From: Kaylee George <62825936+kayleegeorge@users.noreply.github.com> Date: Fri, 26 Aug 2022 13:32:23 -0700 Subject: [PATCH] fix: rm right padding on token details (#4518) rm padding on mobile --- src/pages/TokenDetails/index.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/pages/TokenDetails/index.tsx b/src/pages/TokenDetails/index.tsx index cd3da16424..8ca5b249e7 100644 --- a/src/pages/TokenDetails/index.tsx +++ b/src/pages/TokenDetails/index.tsx @@ -46,6 +46,10 @@ const TokenDetailsLayout = styled.div` padding-top: 20px; } + @media only screen and (max-width: ${LARGE_MEDIA_BREAKPOINT}) { + gap: 0px; + } + @media only screen and (max-width: ${SMALL_MEDIA_BREAKPOINT}) { padding-left: 16px; padding-right: 16px;