Commit 1b43e0b2 authored by aballerr's avatar aballerr Committed by GitHub

fix: wallet mobile ui changes (#4515)

fix wallet mobile
Co-authored-by: default avatarAlex Ball <alexball@UNISWAP-MAC-038.local>
parent a23f7782
...@@ -20,6 +20,10 @@ const ConnectButton = styled(ButtonPrimary)` ...@@ -20,6 +20,10 @@ const ConnectButton = styled(ButtonPrimary)`
font-size: 16px; font-size: 16px;
margin-left: auto; margin-left: auto;
margin-right: auto; margin-right: auto;
@media only screen and (max-width: ${({ theme }) => `${theme.breakpoint.sm}px`}) {
width: 100%;
}
` `
const Divider = styled.div` const Divider = styled.div`
......
...@@ -67,7 +67,7 @@ const StyledChevron = styled(ChevronLeft)` ...@@ -67,7 +67,7 @@ const StyledChevron = styled(ChevronLeft)`
const BackSection = styled.div` const BackSection = styled.div`
position: absolute; position: absolute;
background-color: ${({ theme }) => theme.backgroundSurface}; background-color: ${({ theme }) => theme.backgroundSurface};
width: 100%; width: 99%;
padding: 0 16px 16px 16px; padding: 0 16px 16px 16px;
color: ${({ theme }) => theme.textSecondary}; color: ${({ theme }) => theme.textSecondary};
cursor: default; cursor: default;
......
...@@ -24,6 +24,9 @@ const WalletWrapper = styled.div` ...@@ -24,6 +24,9 @@ const WalletWrapper = styled.div`
@media only screen and (max-width: ${({ theme }) => `${theme.breakpoint.sm}px`}) { @media only screen and (max-width: ${({ theme }) => `${theme.breakpoint.sm}px`}) {
width: 100%; width: 100%;
border-bottom-right-radius: 0px;
border-bottom-left-radius: 0px;
box-shadow: unset;
} }
` `
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment