integration: homepage tagline breaklines are not shown on mobile

breaklines on small width devices made everything look weird, just hide
them by default
This commit is contained in:
Emmanuel Pelletier
2024-05-15 07:47:21 +02:00
parent f2a0491c2e
commit 84bcb5181a

View File

@@ -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;
}