Files
myPrayerJournal/src/app/src/App.vue
Daniel J. Summers ef88964cd0 interim commit with lots of stuff
- conversion from Element UI to Bootstrap 4 in progress (smaller, more
flexible)
- added Font Awesome for fonts, vue-toast for notifications
- added common components to main.js and out of other components
- some work on pulling answered requests (#3), added icon for notes (#8)
2017-09-28 21:59:40 -05:00

41 lines
559 B
Vue

<template lang="pug">
#app
navigation
#content.container
router-view
vue-progress-bar
footer
p.text-right: i myPrayerJournal v0.8.1
</template>
<script>
'use strict'
import Navigation from './components/Navigation.vue'
export default {
name: 'app',
components: {
Navigation
}
}
</script>
<style>
body {
padding-top: 60px;
}
footer {
border-top: solid 1px lightgray;
margin-top: 1rem;
padding: 0 1rem;
}
footer p {
margin: 0;
}
.mpj-page-title {
border-bottom: solid 1px lightgray;
margin-bottom: 20px;
}
</style>