From ff16fa9ca5070d4a74ef0b2dd37bb8f3d7c51500 Mon Sep 17 00:00:00 2001 From: mhoennig Date: Tue, 21 Jul 2026 12:45:15 +0200 Subject: [PATCH] =?UTF-8?q?frontend:=20Vollbild=20l=C3=A4sst=20schmalen=20?= =?UTF-8?q?Rand=20(halber=20Panel-Zwischenraum)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Statt bündig am Fensterrand bleibt im Vollbild links/rechts ein 7-px-Rand (halber Panel-Zwischenraum von 14 px), damit die Panels nicht gedrängt wirken. Co-Authored-By: Claude Opus 4.8 --- frontend/index.html | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/frontend/index.html b/frontend/index.html index e43c5d5..00f4a30 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -43,8 +43,10 @@ .fsbtn svg{display:block} .fsbtn:hover{border-color:var(--or);color:var(--or)} .fsbtn.active{background:var(--or);color:#fff;border-color:var(--or)} - /* Vollbild: Panels nutzen die ganze Fensterbreite (kein linker/rechter Rand). */ - body.fullscreen{padding-left:0;padding-right:0} + /* Vollbild: Panels nutzen fast die ganze Fensterbreite; es bleibt ein + schmaler Rand (halber Panel-Zwischenraum = 7 px), damit es nicht gedrängt + wirkt. */ + body.fullscreen{padding-left:7px;padding-right:7px} body.fullscreen header, body.fullscreen .app, body.fullscreen .site-footer{max-width:none}