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.
This commit is contained in:
Kumi 2024-08-30 17:01:12 +02:00
parent df4f1f6f45
commit 249fba16a6
Signed by: kumi
GPG key ID: ECBCC9082395383F

View file

@ -487,6 +487,10 @@ section>.category-link::after {
clear: right;
}
.infobox .mw-default-size {
float: unset;
}
.infobox-title {
background-color: #1e90ff;
color: white;