From dede5d0f90a0b9bce84fae39f5ab5cb3a0e67371 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?benjamin=20melan=C3=A7on?= Date: Sat, 22 Feb 2025 16:52:25 -0500 Subject: [PATCH] Prevent a slight horizontal scroll from page title area Not entirely sure the root cause, but we do mess with default overflow visibility in order to overlay the title on the image. Ref #114 --- web/themes/custom/geofresco/src/global/_layout.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/web/themes/custom/geofresco/src/global/_layout.scss b/web/themes/custom/geofresco/src/global/_layout.scss index 78c0fb7..806a7f2 100644 --- a/web/themes/custom/geofresco/src/global/_layout.scss +++ b/web/themes/custom/geofresco/src/global/_layout.scss @@ -39,6 +39,11 @@ } } +// Prevent a slight horizontal scroll. +.page-title .container { + overflow-x: hidden; +} + /* On content listing pages (e.g. card view mode). */ .background-replacement-for-no-image { height: 10rem;