From fe2811c51cab86dda54e39548d57fd031dcc160b Mon Sep 17 00:00:00 2001 From: ministicraft Date: Tue, 14 Apr 2026 00:50:32 +0200 Subject: [PATCH] fix: set fixed slide dimensions and scaling for consistent sizing MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Set 1280x720 canvas with margin 0.08 and scale range 0.2–2.0 so all slides render at the same size regardless of content. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- index.html | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/index.html b/index.html index 994c30d..a2ce8a2 100644 --- a/index.html +++ b/index.html @@ -411,6 +411,11 @@ class webserver { }); Reveal.initialize({ + width: 1280, + height: 720, + margin: 0.08, + minScale: 0.2, + maxScale: 2.0, hash: true, slideNumber: 'c/t', transition: 'slide',