Lots of changes. Added footer, calendar is more interactive and now we can route to specific adventures and fields become populated. Started upload progress of images and 404 page.

This commit is contained in:
2019-02-23 22:38:32 +01:00
parent 82a53ed9aa
commit b84cd100a7
23 changed files with 1106 additions and 157 deletions

View File

@@ -1,17 +1,16 @@
<template>
<div id="app" class="container">
<div id="app">
<router-view />
<Popover class="popup" v-if="popoverState"></Popover>
<Popover class="popup" v-if="popoverState" v-bind:class="[popoverState ? 'blur' : '', 'bk']"></Popover>
</div>
</template>
<script>
import Vue from 'vue'
import Popover from '@/components/Popover'
import routes from '@/routes'
import Popover from '@/components/Popover'
import { mapGetters, mapActions } from 'vuex'
export default {
@@ -25,4 +24,13 @@ export default {
<style lang="scss">
@import './scss/main.scss';
.bk {
transition: all 2s ease-out;
}
.blur {
// filter: blur(2px);
opacity: 1;
}
</style>