From 917d7aa6f3dfbf05d537d6f9f34a4182a26bf839 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 d5ea82bf..877d1ba9 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{