From c59a3a839d6461400744eda9cc0a7f8824d17d76 Mon Sep 17 00:00:00 2001 From: John Sullivan Date: Thu, 24 Dec 2020 00:13:28 -0800 Subject: [PATCH 1/2] adds meta element for viewport should fix size issues on mobile, I think --- frontend/index.html | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/index.html b/frontend/index.html index 243023d..0332472 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -1,6 +1,7 @@ + From b9a2e6a69fef4b5585e2fe32f8006279b31941bf Mon Sep 17 00:00:00 2001 From: John Sullivan Date: Tue, 19 Jan 2021 17:51:08 -0800 Subject: [PATCH 2/2] update frontend to better handle mobile devices sets a min + max width for our input boxes --- frontend/index.html | 2 +- frontend/style.css | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/frontend/index.html b/frontend/index.html index 0332472..7ccf18d 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -13,7 +13,7 @@
- +
diff --git a/frontend/style.css b/frontend/style.css index ed752fb..1c8d05a 100644 --- a/frontend/style.css +++ b/frontend/style.css @@ -9,7 +9,8 @@ body { flex-direction: column; align-items: center; justify-content: center; - max-width: 45%; + max-width: 1080px; + min-width: 45%; }