From 022f434afcdc0c3b6e93e02a2e5b3577e84e83b3 Mon Sep 17 00:00:00 2001 From: M Fahru Date: Wed, 31 Jul 2024 11:06:28 -0700 Subject: [PATCH] Merge pull request #18296 from overleaf/mf-reverse-button-containers-buttons [web][website-redesign] Reverse the position for button pair inside of `.responsive-button-container` element GitOrigin-RevId: 72e229b37adb390c904abbabaec04e9ee964aba4 --- services/web/frontend/stylesheets/app/website-redesign.less | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/services/web/frontend/stylesheets/app/website-redesign.less b/services/web/frontend/stylesheets/app/website-redesign.less index 4cd4dade35..c7cd54551c 100644 --- a/services/web/frontend/stylesheets/app/website-redesign.less +++ b/services/web/frontend/stylesheets/app/website-redesign.less @@ -1091,11 +1091,7 @@ @media (max-width: @screen-xs-max) { width: 100%; - // this is currently useful for responsive-button-container that has two buttons - // in our current implementation, all two-buttons container will have the same value (explore plan + sign up) - // we want to sign up to be on the right side on big screen, and on the top on small screen - // if we want to apply this style for different buttons scenario, we should change this - flex-direction: column-reverse; + flex-direction: column; } }