scope ul font-size rule to prevent global CSS pollution
All checks were successful
CI / update (push) Successful in 9s

The global 'ul' selector was affecting all unordered lists across the app after visiting /glaube/rosenkranz. This caused layout issues with action buttons on recipe pages where the internal symbols would shift to the top instead of being centered.

Fixed by scoping the rule to only apply to ul elements within .gebet containers.
This commit is contained in:
2025-12-27 13:31:40 +01:00
parent f161d8a15d
commit d4564ca973

View File

@@ -2,7 +2,7 @@ div.gebet{
text-align: center;
font-size: 1.25em;
}
ul {
.gebet ul {
font-size: 120%;
}
.gebet v{