From e07e2edfbd9792919a37c689811285a3ce1e5d43 Mon Sep 17 00:00:00 2001 From: Harshit Kumar Date: Sun, 16 Aug 2026 20:52:21 +0530 Subject: [PATCH 1/2] Fix mobile recognition page alignment Signed-off-by: Harshit Kumar --- src/sitecomponents/App.style.js | 31 +++++++++++++++++++++---------- 1 file changed, 21 insertions(+), 10 deletions(-) diff --git a/src/sitecomponents/App.style.js b/src/sitecomponents/App.style.js index 8a33405..e961859 100644 --- a/src/sitecomponents/App.style.js +++ b/src/sitecomponents/App.style.js @@ -354,17 +354,28 @@ export const Main = styled.main` } } @media screen and (max-width: 768px) { - figure { - width: 90%; - } - max-width: 85%; - .display-badge-steps { - margin: 0; - } - .banner-logos h4 { - margin: 1rem; - } + figure { + width: 90%; + } + + max-width: 85%; + + .program-logo { + float: none; + display: block; + margin: 0 auto 1.5rem auto; + max-width: 180px; + width: auto; + } + + .display-badge-steps { + margin: 0; + } + + .banner-logos h4 { + margin: 1rem; } +} @media screen and (max-width: 568px) { figure { width: 100%; From 41a9d83160b4be530168dd2052446f7f4d957ff0 Mon Sep 17 00:00:00 2001 From: Harshit Kumar Date: Sat, 22 Aug 2026 15:40:25 +0530 Subject: [PATCH 2/2] Fix mobile recognition page alignment Signed-off-by: Harshit Kumar --- src/sitecomponents/App.style.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/sitecomponents/App.style.js b/src/sitecomponents/App.style.js index e961859..3ddc94c 100644 --- a/src/sitecomponents/App.style.js +++ b/src/sitecomponents/App.style.js @@ -367,7 +367,9 @@ export const Main = styled.main` max-width: 180px; width: auto; } - + .try-now-txt { + margin-top: 0; + } .display-badge-steps { margin: 0; }