about summary refs log tree commit diff
path: root/public
diff options
context:
space:
mode:
Diffstat (limited to 'public')
-rw-r--r--public/index.html10
1 files changed, 9 insertions, 1 deletions
diff --git a/public/index.html b/public/index.html
index c12fddc36..f6cb612b6 100644
--- a/public/index.html
+++ b/public/index.html
@@ -4,8 +4,16 @@
     <meta charset="UTF-8">
     <meta name="viewport" content="width=device-width">     
     <title> WEBAPP </title>
+    <style>
+      /* These styles make the body full-height */
+      html, body { height: 100%; }
+      /* These styles disable body scrolling if you are using <ScrollView> */
+      body { overflow: hidden; }
+      /* These styles make the root element full-height */
+      #root { display:flex; height:100%; }
+    </style>
   </head>
   <body>
-      <div id="root"></div>
+    <div id="root"></div>
   </body>
 </html>
\ No newline at end of file