diff --git a/src/app/src/App.vue b/src/app/src/App.vue
index 4e7a013..43509a9 100644
--- a/src/app/src/App.vue
+++ b/src/app/src/App.vue
@@ -1,14 +1,16 @@
- #app
- navigation
- #content.container
- router-view
- vue-progress-bar
- footer
- p.text-right: i myPrayerJournal v0.8.0
+#app
+ navigation
+ #content.container
+ router-view
+ vue-progress-bar
+ footer
+ p.text-right: i myPrayerJournal v0.8.0
diff --git a/src/app/src/components/Home.vue b/src/app/src/components/Home.vue
index e8edb8e..4fcf95e 100644
--- a/src/app/src/components/Home.vue
+++ b/src/app/src/components/Home.vue
@@ -1,18 +1,20 @@
- article
- page-title(title="Welcome!" hideOnPage="true")
- p
- p.
- myPrayerJournal is a place where individuals can record their prayer requests, record that they prayed for them,
- update them as God moves in the situation, and record a final answer received on that request. It will also
- allow individuals to review their answered prayers.
- p.
- This site is currently in very limited alpha, as it is being developed with a core group of test users. If
- this is something in which you are interested, check back around mid-November 2017 for an update on the
- development progress.
+article
+ page-title(title="Welcome!" hideOnPage="true")
+ p
+ p.
+ myPrayerJournal is a place where individuals can record their prayer requests, record that they prayed for them,
+ update them as God moves in the situation, and record a final answer received on that request. It will also
+ allow individuals to review their answered prayers.
+ p.
+ This site is currently in very limited alpha, as it is being developed with a core group of test users. If
+ this is something in which you are interested, check back around mid-November 2017 for an update on the
+ development progress.
diff --git a/src/app/src/components/PageTitle.vue b/src/app/src/components/PageTitle.vue
index df8aace..2bd641a 100644
--- a/src/app/src/components/PageTitle.vue
+++ b/src/app/src/components/PageTitle.vue
@@ -1,11 +1,11 @@
- h2.mpj-page-title(v-if="!hideOnPage" v-html="title")
+h2.mpj-page-title(v-if="!hideOnPage" v-html="title")
\ No newline at end of file
diff --git a/src/app/src/components/request/FullRequestHistory.vue b/src/app/src/components/request/FullRequestHistory.vue
new file mode 100644
index 0000000..2290aec
--- /dev/null
+++ b/src/app/src/components/request/FullRequestHistory.vue
@@ -0,0 +1,21 @@
+
+p.journal-request
+ | {{ history.status }} {{ asOf }}
+ span(v-if='0 < history.text.length') » {{ history.text }}
+
+
+
diff --git a/src/app/src/components/request/NewRequest.vue b/src/app/src/components/request/NewRequest.vue
index 5fa69ca..a98b0ef 100644
--- a/src/app/src/components/request/NewRequest.vue
+++ b/src/app/src/components/request/NewRequest.vue
@@ -1,13 +1,13 @@
- div
- el-button(@click='openDialog()') Add a New Request
- el-dialog(title='Add a New Prayer Request' :visible.sync='showNewVisible')
- el-form(:model='form' :label-position='top')
- el-form-item(label='Prayer Request')
- el-input(type='textarea' v-model.trim='form.requestText' :rows='10')
- span.dialog-footer(slot='footer')
- el-button(@click='closeDialog()') Cancel
- el-button(type='primary' @click='saveRequest()') Save
+div
+ el-button(@click='openDialog()') Add a New Request
+ el-dialog(title='Add a New Prayer Request' :visible.sync='showNewVisible')
+ el-form(:model='form' :label-position='top')
+ el-form-item(label='Prayer Request')
+ el-input(type='textarea' v-model.trim='form.requestText' :rows='10')
+ span.dialog-footer(slot='footer')
+ el-button(@click='closeDialog()') Cancel
+ el-button(type='primary' @click='saveRequest()') Save
\ No newline at end of file
+
diff --git a/src/app/src/components/request/RequestListItem.vue b/src/app/src/components/request/RequestListItem.vue
index ccb9d13..3ecd7ab 100644
--- a/src/app/src/components/request/RequestListItem.vue
+++ b/src/app/src/components/request/RequestListItem.vue
@@ -1,12 +1,11 @@
- el-row.journal-request
- el-col(:span='4')
- p
- el-button(icon='check' @click='markPrayed()' title='Pray')
- edit-request(:request='request')
- el-button(icon='document' @click='viewHistory()' title='Show History')
- el-col(:span='16'): p {{ request.text }}
- el-col(:span='4'): p {{ asOf }}
+el-row.journal-request
+ el-col(:span='4'): p
+ el-button(icon='check' @click='markPrayed()' title='Pray')
+ edit-request(:request='request')
+ full-request(:request='request')
+ el-col(:span='16'): p {{ request.text }}
+ el-col(:span='4'): p {{ asOf }}
diff --git a/src/app/src/main.js b/src/app/src/main.js
index f183766..df5dd75 100644
--- a/src/app/src/main.js
+++ b/src/app/src/main.js
@@ -16,7 +16,12 @@ Vue.use(ElementUI)
Vue.use(VueProgressBar, {
color: 'rgb(32, 160, 255)',
failedColor: 'red',
- height: '3px'
+ height: '5px',
+ transition: {
+ speed: '0.2s',
+ opacity: '0.6s',
+ termination: 1000
+ }
})
/* eslint-disable no-new */