diff --git a/index.html b/index.html
index 359264c..389df75 100644
--- a/index.html
+++ b/index.html
@@ -6,8 +6,8 @@
Greenville OpenMapData
-
-
+
+
diff --git a/package.json b/package.json
index e65bd27..f113eaf 100644
--- a/package.json
+++ b/package.json
@@ -3,6 +3,7 @@
"version": "0.0.0",
"scripts": {
"dev": "vite --port 4173",
+ "dev:host": "vite --port 4173 --host",
"build": "run-p type-check build-only",
"preview": "vite preview",
"test:unit": "vitest --environment jsdom --root src/ --watch=false",
diff --git a/src/assets/style.css b/src/assets/style.css
index 1de02d7..08fedcd 100644
--- a/src/assets/style.css
+++ b/src/assets/style.css
@@ -6,3 +6,8 @@
@apply underline hover:text-white active:text-white;
@apply transition-all duration-300 ease-in-out;
}
+
+/* Workaround for mobile viewports */
+.h-full-screen {
+ @apply fixed h-full overscroll-none;
+}