From 88de6bfca44b33d8282abfd7375f8549a13cc586 Mon Sep 17 00:00:00 2001 From: "Timothy Z." Date: Wed, 15 Jan 2025 12:35:21 +0200 Subject: [PATCH] fix(App): older iOS versions support --- src/App/styles.less | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/App/styles.less b/src/App/styles.less index 11b52de8b..3afdc4dd0 100644 --- a/src/App/styles.less +++ b/src/App/styles.less @@ -112,8 +112,8 @@ svg { html { width: @html-width; height: @html-height; - min-width: 640px; - min-height: 480px; + min-width: 100%; // Fallback for browsers that don't support new CSS units + min-height: 100%; font-family: 'PlusJakartaSans', 'sans-serif'; overflow: auto; overscroll-behavior: none;