scope ul font-size rule to prevent global CSS pollution

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 1825976248
commit 917d7aa6f3
+1 -1
View File
@@ -2,7 +2,7 @@ div.gebet{
text-align: center;
font-size: 1.25em;
}
ul {
.gebet ul {
font-size: 120%;
}
.gebet v{