MediaWiki:Mobile.css: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Die Seite wurde geleert. Markierung: Geleert |
Keine Bearbeitungszusammenfassung |
||
| Zeile 1: | Zeile 1: | ||
/* Full-Width Fix für Mobile/iOS – reduziert Leerraum links/rechts */ | |||
@media all and (max-width: 720px) { | |||
.mw-parser-output { | |||
width: 100% !important; | |||
max-width: 100% !important; | |||
margin: 0 !important; | |||
padding: 0 !important; | |||
box-sizing: border-box !important; | |||
overflow-x: hidden; /* Verhindert horizontales Scrollen auf iOS */ | |||
} | |||
} | |||
Version vom 5. Oktober 2025, 09:48 Uhr
/* Full-Width Fix für Mobile/iOS – reduziert Leerraum links/rechts */
@media all and (max-width: 720px) {
.mw-parser-output {
width: 100% !important;
max-width: 100% !important;
margin: 0 !important;
padding: 0 !important;
box-sizing: border-box !important;
overflow-x: hidden; /* Verhindert horizontales Scrollen auf iOS */
}
}