From 315391de7f303afc8dbd47e0dc380f826802587f Mon Sep 17 00:00:00 2001 From: Botzy Date: Mon, 24 Feb 2025 18:28:24 +0200 Subject: [PATCH 1/2] fix(Intro): modify breakpoint for mobile layout and add some adjustments --- src/routes/Intro/styles.less | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/src/routes/Intro/styles.less b/src/routes/Intro/styles.less index 61a62aff1..b42a0b144 100644 --- a/src/routes/Intro/styles.less +++ b/src/routes/Intro/styles.less @@ -252,7 +252,7 @@ } } -@media only screen and (max-width: @minimum) { +@media only screen and (max-width: @xsmall) { .intro-container { justify-content: initial; padding: 3rem 1.5rem; @@ -279,6 +279,22 @@ .content-container { flex-direction: column-reverse; + .form-container, .options-container { + width: 50%; + margin: 0 auto; + } + + .options-container { + margin-bottom: 4rem; + } + } + } +} + + +@media only screen and (max-width: @minimum) { + .intro-container { + .content-container { .form-container, .options-container { width: 100%; margin: 0; From 9d17c82562aac8586f7b12441f85ffd01e7f300e Mon Sep 17 00:00:00 2001 From: Botsy Date: Tue, 25 Feb 2025 12:24:30 +0200 Subject: [PATCH 2/2] Update src/routes/Intro/styles.less Co-authored-by: Timothy Z. --- src/routes/Intro/styles.less | 1 - 1 file changed, 1 deletion(-) diff --git a/src/routes/Intro/styles.less b/src/routes/Intro/styles.less index b42a0b144..935b0fad1 100644 --- a/src/routes/Intro/styles.less +++ b/src/routes/Intro/styles.less @@ -291,7 +291,6 @@ } } - @media only screen and (max-width: @minimum) { .intro-container { .content-container {