From 4046211fa6483652d445b2cbb0b4aa77899dfbba Mon Sep 17 00:00:00 2001 From: ignaciogros Date: Fri, 26 Jun 2026 14:14:03 +0200 Subject: [PATCH 1/3] Fullscreen mode: hide navbar, expand viewer to full viewport. --- css/styles.css | 6 +++ index.html | 9 +++++ js/app.js | 99 +++++++++++++++++++++++++++++++------------------- lang/en.json | 4 +- lang/es.json | 4 +- 5 files changed, 83 insertions(+), 39 deletions(-) diff --git a/css/styles.css b/css/styles.css index 9415b75..816a7bc 100644 --- a/css/styles.css +++ b/css/styles.css @@ -305,6 +305,12 @@ body { background-color: var(--surface-color); } +/* Fullscreen mode: hide navbar, expand viewer to full viewport */ +body.fullscreen-mode .viewer-container { + height: 100vh; + margin-top: 0; +} + .content-frame { width: 100%; height: 100%; diff --git a/index.html b/index.html index aa1c3a5..fa0d685 100644 --- a/index.html +++ b/index.html @@ -236,6 +236,15 @@