From d51b01bf5400119a39eb5b60d2da80f9af9a0c4a Mon Sep 17 00:00:00 2001 From: Alexandre Roux Date: Mon, 26 Jan 2026 15:33:33 +0100 Subject: [PATCH 1/3] Revert to 92% width of guest box in guest.css --- core/css/guest.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/css/guest.css b/core/css/guest.css index 0184377..16d7813 100644 --- a/core/css/guest.css +++ b/core/css/guest.css @@ -1152,7 +1152,7 @@ a.legal { #body-login .v-align .guest-box { justify-content: center !important; - width: 98%; + width: 92%; margin-left: 0; margin-right: 0; box-shadow: none; -- GitLab From a629611598111c6239473fcce87c633bedea91b7 Mon Sep 17 00:00:00 2001 From: Alexandre Roux Date: Mon, 26 Jan 2026 16:11:50 +0100 Subject: [PATCH 2/3] fix miss alignement on login page also --- core/css/guest.css | 1 + 1 file changed, 1 insertion(+) diff --git a/core/css/guest.css b/core/css/guest.css index 16d7813..5807feb 100644 --- a/core/css/guest.css +++ b/core/css/guest.css @@ -1189,6 +1189,7 @@ a.legal { border-radius: 8px; font-size: 16px; background-color: #ffffff; + margin-left: 0; } #body-login .input-field--legacy .input-field__main-wrapper:hover:not(:has([disabled])){ padding: 1px; -- GitLab From bbcbc4ed480703b79ef5a100328595eb03dbbf1d Mon Sep 17 00:00:00 2001 From: Alexandre Roux Date: Mon, 26 Jan 2026 16:22:00 +0100 Subject: [PATCH 3/3] Using first width minus padding left + right --- core/css/guest.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/css/guest.css b/core/css/guest.css index 5807feb..6247c00 100644 --- a/core/css/guest.css +++ b/core/css/guest.css @@ -1152,7 +1152,7 @@ a.legal { #body-login .v-align .guest-box { justify-content: center !important; - width: 92%; + width: calc(98% - 32px); margin-left: 0; margin-right: 0; box-shadow: none; -- GitLab