Disable double-tap to zoom on mobile view of scouting website

Signed-off-by: Sabina Leaver <100027607@mvla.net>
Change-Id: I48064f56ad560ce7b7d91bef63ac68453b5f8ce9
diff --git a/.gitignore b/.gitignore
index 8eeac66..f881856 100644
--- a/.gitignore
+++ b/.gitignore
@@ -9,6 +9,7 @@
 # The scraping library uses looks for this config file by default,
 # you don't want to get that checked in
 /scouting_config.json
+/scouting.db
 
 # Hide vagrant's files that unfortunately make it into the source tree when you
 # run "vagrant up".
diff --git a/scouting/www/entry/entry.component.css b/scouting/www/entry/entry.component.css
index 2cb500f..7cbc6d7 100644
--- a/scouting/www/entry/entry.component.css
+++ b/scouting/www/entry/entry.component.css
@@ -15,10 +15,14 @@
 }
 
 textarea {
-    width: 300px;
-    height: 150px;
+  width: 300px;
+  height: 150px;
 }
 
 .error_message {
-    color: red;
+  color: red;
+}
+
+button {
+  touch-action: manipulation;
 }