From 9c5166871bcdf3b9a7a596b4f2aab015cece7b14 Mon Sep 17 00:00:00 2001 From: Lutu-gl <74654393+Lutu-gl@users.noreply.github.com> Date: Wed, 12 Mar 2025 11:53:42 +0100 Subject: [PATCH] removed maxwidth and maxheight of modal --- main.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/main.ts b/main.ts index e183e5a..a242928 100644 --- a/main.ts +++ b/main.ts @@ -89,11 +89,6 @@ class QuestionsModal extends Modal { onOpen() { const { modalEl } = this; - // size of the modal - //modalEl.style.width = "60vw"; - //modalEl.style.height = "70vh"; - modalEl.style.maxWidth = "800px"; - modalEl.style.maxHeight = "600px"; // blur of the background const bgEl = modalEl.parentElement;