From 18f2480e619b5405d9fec7809011b194967dda1b Mon Sep 17 00:00:00 2001 From: Chris Houston Date: Mon, 30 Mar 2020 10:59:44 -0400 Subject: [PATCH] Fixed an issue on mobile and added the "Select your category" option. --- covid-19-support/src/App.vue | 10 +--------- covid-19-support/src/components/ResultsList.vue | 4 ++-- covid-19-support/src/components/SearchFilter.vue | 15 +++++++++++++-- covid-19-support/src/locales/en.json | 3 ++- 4 files changed, 18 insertions(+), 14 deletions(-) diff --git a/covid-19-support/src/App.vue b/covid-19-support/src/App.vue index d7c1d212..82138854 100644 --- a/covid-19-support/src/App.vue +++ b/covid-19-support/src/App.vue @@ -47,7 +47,7 @@ export default { data() { return { entries: null, - need: 'restaurant', + need: 'none', day: new Date().getDay(), isFilterOpen: true, language: { name: 'English', iso: 'en' } @@ -92,14 +92,6 @@ body, box-sizing: border-box; } -#wrapper.toggled .tab { - left: 22rem; -} - -#wrapper.toggled .tab i { - transform: rotate(90deg); -} - #page-content-wrapper { width: 100%; height: 100%; diff --git a/covid-19-support/src/components/ResultsList.vue b/covid-19-support/src/components/ResultsList.vue index 200762b1..bf456de5 100644 --- a/covid-19-support/src/components/ResultsList.vue +++ b/covid-19-support/src/components/ResultsList.vue @@ -31,8 +31,8 @@ export default {