about summary refs log tree commit diff
path: root/public/index.html
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2022-06-09 16:32:03 -0500
committerPaul Frazee <pfrazee@gmail.com>2022-06-09 16:32:03 -0500
commitfc3b2952bb59b80665ebb53ffb3377f647ccdbd3 (patch)
tree37477c0803459ff55f0e26ae27c8231305e6856a /public/index.html
parentd6942bffab68ce80d5cb26b42710dd9276f62ded (diff)
downloadvoidsky-fc3b2952bb59b80665ebb53ffb3377f647ccdbd3.tar.zst
Add routes and core views
Diffstat (limited to 'public/index.html')
-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