diff --git a/web/packages/shared/components/AuthorizeDeviceWeb/AuthorizeDeviceWeb.tsx b/web/packages/shared/components/AuthorizeDeviceWeb/AuthorizeDeviceWeb.tsx index 9a46336ea0efb..0bf8023beacd9 100644 --- a/web/packages/shared/components/AuthorizeDeviceWeb/AuthorizeDeviceWeb.tsx +++ b/web/packages/shared/components/AuthorizeDeviceWeb/AuthorizeDeviceWeb.tsx @@ -139,8 +139,10 @@ export const DeviceTrustConnectPassthrough = ({ const SkipAuthNotice = styled(Box)` text-align: center; width: 100%; - position: absolute; - bottom: 24px; + @media (min-height: 500px) { + position: absolute; + bottom: 24px; + } `; const DownloadButton = styled(ButtonLink)` @@ -156,5 +158,5 @@ const BoldText = styled.span` const Wrapper = styled(Box)` text-align: center; line-height: 32px; - padding-top: 200px; + padding-top: 5vh; `;