From 077f2576e20f0f38c3c2ed5c4f4dcba82e594470 Mon Sep 17 00:00:00 2001 From: C0d3v Date: Sat, 7 Feb 2026 12:02:39 +0100 Subject: [PATCH] Change viewport to 1000 --- ui.R | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui.R b/ui.R index 7f3b9d5..979154e 100644 --- a/ui.R +++ b/ui.R @@ -40,7 +40,7 @@ ui <- function() { background-color: #f4f7f9 !important; /* Ganz leichtes Blaugrau für Tiefe */ transform-origin: 0 0; /* Align to top-left for math accuracy */ width: 1920px; /* Match your dev monitor */ - height: 1080px; + height: 1000px; overflow: hidden; position: absolute; } @@ -238,7 +238,7 @@ ui <- function() { tags$script(HTML(" $(document).on('shiny:connected', function() { var targetWidth = 1920; - var targetHeight = 1080; + var targetHeight = 1000; function scaleApp() { var windowWidth = $(window).width(); var windowHeight = $(window).height();