FIX: Center paragraph text (#99)

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.
This commit is contained in:
Dax74 2025-07-17 21:16:46 +02:00 committed by GitHub
parent e38351446e
commit 6acd2658cc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 0 deletions

View File

@ -99,3 +99,7 @@
.custom-search-banner .welcome-banner__wrap .search-menu { .custom-search-banner .welcome-banner__wrap .search-menu {
display: flex; display: flex;
} }
.custom-search-banner-wrap p {
text-align: center;
}