Updated CSS to work on phones

Homescreen adjusted
Warning adjusted
Question component (not Questionnaire) adjusted
Fixed questionmaire typo
This commit is contained in:
Tim Ktitarev 2020-03-21 21:48:37 +01:00
parent de12ea3f4b
commit fecbba5b0b
8 changed files with 108 additions and 44 deletions

View file

@ -1,8 +1,8 @@
import Vue from 'vue'
import VueRouter from 'vue-router'
import Home from '../views/Home.vue'
import Warning from '../views/Warning'
import Questionnaire from "@/views/Questionnaire";
import Warning from '../views/Warning.vue'
import Questionnaire from "@/views/Questionnaire.vue";
Vue.use(VueRouter)
@ -18,7 +18,7 @@ const routes = [
component: Warning
},
{
path: '/questionmaire',
path: '/questionnaire',
name: 'Fragebogen',
component: Questionnaire
}