From 848d8ba2dcd539158e47c158d7af57f24ef98e69 Mon Sep 17 00:00:00 2001 From: Kiran Ashok Date: Tue, 3 Jan 2023 13:07:26 +0530 Subject: [PATCH] fix :: setupscreen for admin broken in lower resultion fix (#5157) --- frontend/src/_styles/onboarding.scss | 27 ++++++++++++++++++++++----- 1 file changed, 22 insertions(+), 5 deletions(-) diff --git a/frontend/src/_styles/onboarding.scss b/frontend/src/_styles/onboarding.scss index 0ad135a387..8913323d5b 100644 --- a/frontend/src/_styles/onboarding.scss +++ b/frontend/src/_styles/onboarding.scss @@ -193,10 +193,6 @@ } } -// .home-page { -// height: 100vh; -// } - .info-screen-description { margin-bottom: 0px !important; font-family: 'Roboto'; @@ -1452,4 +1448,25 @@ margin-bottom: 4px !important; } -// ONBOARDING-SELF-HOST STYLES END-------> \ No newline at end of file +// ONBOARDING-SELF-HOST STYLES END-------> + + +// setup screen +@media only screen and (max-width: 1200px) { + .sh-setup-banner-inner { + width: 100% !important; + } +} + +@media only screen and (max-width: 1024px) { + .sh-setup-sub-banner { + width: 80% !important; + } + +} + +@media only screen and (max-width: 786px) { + .sh-setup-sub-banner { + width: 100% !important; + } +} \ No newline at end of file