From 9205e1894a432ffe0348dbd355f268e3cde59fa3 Mon Sep 17 00:00:00 2001 From: Dax74 Date: Thu, 17 Jul 2025 19:26:25 +0200 Subject: [PATCH] FIX: Center paragraph text The paragraph below the welcome headline was left-aligned, causing a visual inconsistency with the rest of the centered content. This change applies `text-align: center` to the paragraph to fix the layout. --- common/common.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/common/common.scss b/common/common.scss index 84c7372..5d1aa3f 100644 --- a/common/common.scss +++ b/common/common.scss @@ -99,3 +99,7 @@ .custom-search-banner .welcome-banner__wrap .search-menu { display: flex; } + +.custom-search-banner-wrap p { + text-align: center; +}