MediaWiki:Common.css: Difference between revisions

MediaWiki interface page
No edit summary
(Add css for mobile dive site display)
Tag: Reverted
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */
@media(max-width:767px) {
    .container {
        display: flex;
        flex-wrap: wrap;
    }
    .divesiteinfobox {
        order: 1;
    }
    .content {
        order: 2;
    }
}

Revision as of 16:00, 29 May 2024

/* CSS placed here will be applied to all skins */

@media(max-width:767px) {
    .container {
        display: flex;
        flex-wrap: wrap;
    }
    .divesiteinfobox {
        order: 1;
    }
    .content {
        order: 2;
    }
}