fix: added in correct wallet breakpoints (#4472)

* adding in wallet breakpoints

Co-authored-by: Alex Ball <alexball@UNISWAP-MAC-038.local>
This commit is contained in:
aballerr 2022-08-24 15:16:51 -04:00 committed by GitHub
parent ed66b00b20
commit 0e530cf92e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -28,16 +28,14 @@ export enum MenuState {
const WalletDropdownWrapper = styled.div`
position: absolute;
@media only screen and (min-width: 1280px) {
top: 65px;
right: 20px;
}
@media only screen and (max-width: 1280px) {
left: 50%;
@media only screen and (max-width: ${({ theme }) => `${theme.breakpoint.xl}px`}) {
top: unset;
right: 50%;
bottom: 45px;
transform: translateX(-50%);
transform: translateX(50%);
}
`