diff --git a/public/css/admin_new.css b/public/css/admin_new.css index 8e9dceb7c..7ca7840cd 100644 --- a/public/css/admin_new.css +++ b/public/css/admin_new.css @@ -33314,6 +33314,32 @@ div.wrap1360.subpage_ div#three { display: none !important; } } +@media (max-width: 1100px) { + .no_survey_title { + font-size: 24px !important; + width: 92vw !important; + margin-top: 16px; + } +} +@media (max-width: 1100px) { + .no_survey_box, +#no_survey_features { + width: 92vw !important; + } +} +@media (max-width: 1100px) { + #no_survey_video { + width: 92vw !important; + aspect-ratio: 16/9; + } + #no_survey_video p { + height: 100%; + } + #no_survey_video p iframe { + width: 100%; + height: 100%; + } +} @media (max-width: 850px) { body #main_holder #main { margin: 70px 0 0 0; diff --git a/resources/sass/admin_new/mobile/responsive_fixes.scss b/resources/sass/admin_new/mobile/responsive_fixes.scss index 9436372d1..02db2f8cd 100644 --- a/resources/sass/admin_new/mobile/responsive_fixes.scss +++ b/resources/sass/admin_new/mobile/responsive_fixes.scss @@ -73,3 +73,27 @@ div.wrap1360 { } } } + +//Oboarding screen +.no_survey_title { + font-size: 24px !important; + width: 92vw !important; + margin-top: 16px; +} +.no_survey_box, +#no_survey_features { + width: 92vw !important; +} + +#no_survey_video { + width: 92vw !important; + aspect-ratio: 16/9; + + p { + height: 100%; + iframe { + width: 100%; + height: 100% + } + } +}