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:
parent
df4f1f6f45
commit
249fba16a6
1 changed files with 4 additions and 0 deletions
|
@ -487,6 +487,10 @@ section>.category-link::after {
|
|||
clear: right;
|
||||
}
|
||||
|
||||
.infobox .mw-default-size {
|
||||
float: unset;
|
||||
}
|
||||
|
||||
.infobox-title {
|
||||
background-color: #1e90ff;
|
||||
color: white;
|
||||
|
|
Loading…
Reference in a new issue