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:
parent
e38351446e
commit
6acd2658cc
|
|
@ -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;
|
||||||
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue