MediaWiki:Common.css: Difference between revisions

From 清冽之泉
Jump to navigation Jump to search
Created page with "→‎CSS placed here will be applied to all skins: #mw-panel { display: none !important; }"
 
No edit summary
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* Hide the sidebar */
#mw-panel {
#mw-panel {
     display: none !important;
     display: none;
}
 
/* Adjust content width */
#content {
    margin-left: 0;
}
}

Revision as of 01:25, 25 May 2024

/* Hide the sidebar */
#mw-panel {
    display: none;
}

/* Adjust content width */
#content {
    margin-left: 0;
}