Desktop: Einheitliche Seitenbreite 860px via pc-desktop Klasse
- app.js: _applyDesktopWidth() setzt nach Page-Init die Klasse pc-desktop
auf dem ersten Kind-Div aller Standard-Seiten (excl. admin/map/chat/etc.)
- layout.css: .pc-desktop { max-width:860px !important; margin:0 auto }
- layout.css: .page-container ab 768px auf 860px (statt erst 1024px)
- main.py: /force-update Text "Service Worker wird entfernt" →
"Wir besorgen neue Leckerlis 🦴"
- layout.css ?v=1013, components.css ?v=1010, SW by-v1014, APP_VER 1014
This commit is contained in:
parent
9816075c7e
commit
ed9dd08c14
5 changed files with 39 additions and 9 deletions
|
|
@ -535,6 +535,20 @@
|
|||
margin: 0 auto;
|
||||
}
|
||||
|
||||
/* Desktop: Standard-Container auf 860px erweitern (768px–1023px) */
|
||||
@media (min-width: 768px) {
|
||||
.page-container { max-width: 860px; }
|
||||
}
|
||||
|
||||
/* Desktop-Breite: von app.js nach Page-Init gesetzt */
|
||||
@media (min-width: 768px) {
|
||||
.pc-desktop {
|
||||
max-width: 860px !important;
|
||||
margin-left: auto !important;
|
||||
margin-right: auto !important;
|
||||
}
|
||||
}
|
||||
|
||||
/* Wide-Layout für Karte und ähnliches */
|
||||
.page-container-wide {
|
||||
width: 100%;
|
||||
|
|
@ -589,9 +603,6 @@
|
|||
============================================================ */
|
||||
@media (min-width: 1024px) {
|
||||
|
||||
/* Etwas breiterer Standard-Container auf großen Screens */
|
||||
.page-container { max-width: 860px; }
|
||||
|
||||
/* Admin: breit + Sidebar-Layout */
|
||||
#page-admin .page-container { max-width: 1200px; }
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue