MediaWiki:Common.css: Difference between revisions
CookingAdmin (talk | contribs) (Created page with "→CSS placed here will be applied to all skins: .mw-logo-icon { display:block; width:2em; height:2em } @media all and (min-width:720px) { .mw-logo-icon { display:block width:3.125em; height:3.125em } }") |
CookingAdmin (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
/* CSS placed here will be applied to all skins */ | /* CSS placed here will be applied to all skins */ | ||
.mw-logo-icon { | .mw-logo-icon { | ||
display:block; | display:block !important; | ||
width:2em; | width:2em !important; | ||
height:2em | height:2em !important | ||
} | } | ||
Line 9: | Line 9: | ||
.mw-logo-icon { | .mw-logo-icon { | ||
display:block | display:block | ||
width:3.125em; | width:3.125em !important; | ||
height:3.125em | height:3.125em !important | ||
} | } | ||
} | } |
Revision as of 23:47, 4 February 2024
/* CSS placed here will be applied to all skins */ .mw-logo-icon { display:block !important; width:2em !important; height:2em !important } @media all and (min-width:720px) { .mw-logo-icon { display:block width:3.125em !important; height:3.125em !important } }