From 3a75f68a154d5c3c70c3b5a7abe46cff3c9ba822 Mon Sep 17 00:00:00 2001 From: Ariella Vu <20778143+digiwand@users.noreply.github.com> Date: Tue, 1 Feb 2022 03:32:43 +0000 Subject: [PATCH] #10168 - Fix to Can't open settings if browser zoom level > 100% part 2 (#13460) * AccountMenu: fix #10168 w/ position: absolute - use right: 1rem to match .app-header padding * scss: Use px instead of rem for positioning Co-authored-by: George Marshall Co-authored-by: George Marshall --- ui/components/app/account-menu/index.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/components/app/account-menu/index.scss b/ui/components/app/account-menu/index.scss index 05d3fd6e5..1b5099678 100644 --- a/ui/components/app/account-menu/index.scss +++ b/ui/components/app/account-menu/index.scss @@ -1,5 +1,5 @@ .account-menu { - position: fixed; + position: absolute; z-index: 100; top: 58px; width: 320px; @@ -10,7 +10,7 @@ color: var(--white); @media screen and (max-width: $break-small) { - right: calc(((100vw - 100%) / 2) + 8px); + right: 16px; } @media screen and (min-width: $break-large) {