diff --git a/packages/integration/src/i18n/fr.json b/packages/integration/src/i18n/fr.json
index 40b0d03..c78de58 100644
--- a/packages/integration/src/i18n/fr.json
+++ b/packages/integration/src/i18n/fr.json
@@ -3,7 +3,7 @@
"placeholder": "Entrez votre adresse e-mail",
"srLabel": "Adresse e-mail",
"submit": "Suivant",
- "title": "Connexion avec votre adresse e-mail"
+ "title": "Connexion avec {linebreak}votre adresse e-mail"
},
"footer": {
"homepageLinkTitle": {
diff --git a/packages/integration/src/styles/homepage.css b/packages/integration/src/styles/homepage.css
index 28e36a8..e30395c 100644
--- a/packages/integration/src/styles/homepage.css
+++ b/packages/integration/src/styles/homepage.css
@@ -25,6 +25,7 @@
.lasuite-text-center {
text-align: center;
+ text-wrap: balance;
}
.lasuite-header__brand {
@@ -108,14 +109,22 @@
z-index: 2;
}
+.lasuite-homepage__tagline-container {
+ background-color: white;
+ color: var(--lasuite-primary);
+ padding: 1rem 1.5rem;
+}
+
.lasuite-homepage__tagline {
margin: 0;
font-weight: 400;
- background-color: white;
- color: var(--lasuite-primary);
+ color: inherit;
margin-bottom: 1rem;
font-size: 1.375rem;
- padding: 1rem 1.5rem;
+}
+
+.lasuite-homepage__tagline:only-child {
+ margin-bottom: 0;
}
.lasuite-homepage__tagline-strong {
@@ -123,14 +132,18 @@
}
@media screen and (min-width: 36em) {
- .lasuite-homepage__tagline {
+ .lasuite-homepage__tagline-container {
width: fit-content;
}
}
@media screen and (min-width: 48em) {
+ .lasuite-homepage__tagline-container {
+ padding: 1rem 2rem;
+ padding-left: 4rem;
+ }
+
.lasuite-homepage__tagline {
- padding: 2rem;
font-size: 1.875rem;
}
.lasuite-homepage__tagline br {
@@ -138,8 +151,21 @@
}
}
-.lasuite-homepage__form-container {
+@media screen and (min-width: 90em) {
+ .lasuite-homepage__tagline-container {
+ padding-left: 8rem;
+ }
+}
+
+.lasuite-homepage__secondary-col {
display: flex;
+ width: 100%;
+}
+
+@media screen and (min-width: 36em) {
+ .lasuite-homepage__secondary-col {
+ width: auto;
+ }
}
.lasuite-homepage__form {
@@ -151,13 +177,11 @@
margin: auto;
max-width: 33rem;
padding: 4rem 1.5rem 3rem;
- /* fr-px-4w fr-pt-8w fr-pb-6w fr-px-md-6w */
}
@media screen and (min-width: 48em) {
.lasuite-homepage__form-inner {
margin-left: auto;
- margin-right: 1.5rem;
padding-left: 3rem;
padding-right: 3rem;
}