fix: rm right padding on token details (#4518)

rm padding on mobile
This commit is contained in:
Kaylee George 2022-08-26 13:32:23 -07:00 committed by GitHub
parent 445f9a67a4
commit 18e89a7353
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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;