MediaWiki:Common.css: Difference between revisions

From Connor and Mitch Wiki
(Created page with "→‎CSS placed here will be applied to all skins: .mw-logo { display: none; }")
 
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 {
/* Hide the Vector 2022 logo icon */
.vector-header-start .vector-pinnable-header-icon {
     display: none;
     display: none;
}
/* Optional: Ensure the text aligns properly after the logo is gone */
.vector-header-start .vector-pinnable-header-label {
    margin-left: 0;
}
}

Revision as of 08:55, 5 April 2026

/* CSS placed here will be applied to all skins */
/* Hide the Vector 2022 logo icon */
.vector-header-start .vector-pinnable-header-icon {
    display: none;
}

/* Optional: Ensure the text aligns properly after the logo is gone */
.vector-header-start .vector-pinnable-header-label {
    margin-left: 0;
}