From d4564ca9737edfa2c91c5ba6d89a32634a2e708d Mon Sep 17 00:00:00 2001 From: Alexander Bocken Date: Sat, 27 Dec 2025 13:31:40 +0100 Subject: [PATCH] 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. --- src/lib/css/christ.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/css/christ.css b/src/lib/css/christ.css index d5ea82b..877d1ba 100644 --- a/src/lib/css/christ.css +++ b/src/lib/css/christ.css @@ -2,7 +2,7 @@ div.gebet{ text-align: center; font-size: 1.25em; } -ul { +.gebet ul { font-size: 120%; } .gebet v{