From 02a809ec343105fb2b6d3ca896b7fd928c4fb2df Mon Sep 17 00:00:00 2001 From: Gustavo Fuhr Date: Thu, 14 Jul 2022 03:12:29 +0000 Subject: [PATCH] Merged in body-size-alternative (pull request #54) alternative way to set body to fit browser window * alternative way to set body to fit browser window Approved-by: Paulo Veiga --- packages/editor/src/global-styled.css | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/packages/editor/src/global-styled.css b/packages/editor/src/global-styled.css index 5a93fa33..c7d3636b 100644 --- a/packages/editor/src/global-styled.css +++ b/packages/editor/src/global-styled.css @@ -10,10 +10,11 @@ html { } body { - width: 100vw; - height: 100vh; - min-width: 100vw; - min-height: 100vh; + position:fixed; + bottom: 0px; + top: 0px; + left: 0px; + right: 0px; margin: 0px; }