From 84bcb5181aaf65a842b06d0752dea431db5f3ff8 Mon Sep 17 00:00:00 2001 From: Emmanuel Pelletier Date: Wed, 15 May 2024 07:47:21 +0200 Subject: [PATCH] integration: homepage tagline breaklines are not shown on mobile breaklines on small width devices made everything look weird, just hide them by default --- packages/integration/src/styles/homepage.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/packages/integration/src/styles/homepage.css b/packages/integration/src/styles/homepage.css index 864e91d..b4b0c16 100644 --- a/packages/integration/src/styles/homepage.css +++ b/packages/integration/src/styles/homepage.css @@ -144,6 +144,10 @@ font-weight: 700; } +.lasuite-homepage__tagline br { + display: none; +} + @media screen and (min-width: 36em) { .lasuite-homepage__tagline-container { width: fit-content; @@ -160,6 +164,7 @@ .lasuite-homepage__tagline { font-size: 1.875rem; } + .lasuite-homepage__tagline br { display: block; }