MediaWiki:Mobile.css: Difference between revisions

From Good Creations! MC Wiki
Jump to navigation Jump to search
Created page with "All CSS here will be loaded for users of the mobile site: Fix bug with branding box.: .minerva-header .branding-box { min-width: auto; } Fix heading positionning.: .page-heading { padding-top: 1em; }"
Tags: Mobile edit Mobile web edit Advanced mobile edit
 
No edit summary
Tags: Mobile edit Mobile web edit Advanced mobile edit
Line 8: Line 8:
padding-top: 1em;
padding-top: 1em;
}
}
/* Show elements which are given this class (they are shown again by Common.css). */
.mobileonly { display: block; }
/* Hide elements which are given this class */
.nomobile { display: none; }

Revision as of 08:47, 16 March 2025

/* All CSS here will be loaded for users of the mobile site */

/* Fix bug with branding box. */
.minerva-header .branding-box { min-width: auto; }

/* Fix heading positionning. */
.page-heading {
	padding-top: 1em;
}

/* Show elements which are given this class (they are shown again by Common.css). */
.mobileonly { display: block; }

/* Hide elements which are given this class */
.nomobile { display: none; }