From 249fba16a60b198ed5e2de5411512b9b55a7e076 Mon Sep 17 00:00:00 2001 From: Kumi Date: Fri, 30 Aug 2024 17:01:12 +0200 Subject: [PATCH] fix(css): remove floating from infobox images Unset the float property for images within the infobox with the class 'mw-default-size'. This resolves layout issues where images were not aligning correctly in certain contexts. Ensures more consistent and expected rendering of infobox content. --- src/wikimore/static/css/style.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/wikimore/static/css/style.css b/src/wikimore/static/css/style.css index 8f90f8a..f1a9b9e 100644 --- a/src/wikimore/static/css/style.css +++ b/src/wikimore/static/css/style.css @@ -487,6 +487,10 @@ section>.category-link::after { clear: right; } +.infobox .mw-default-size { + float: unset; +} + .infobox-title { background-color: #1e90ff; color: white;