Added 'Loding indicator'

This commit is contained in:
Liyas Thomas
2019-10-11 14:23:07 +05:30
parent f0bff83fa0
commit e70e448b77
4 changed files with 21 additions and 13 deletions

View File

@@ -78,10 +78,7 @@ nav {
}
body.sticky-footer footer {
position: fixed;
right: 0;
bottom: 0;
left: 0;
opacity: .25;
}
.logo {

View File

@@ -1,8 +1,8 @@
<template>
<div class="page page-error">
<h1>{{ error.statusCode }}</h1>
<h2>{{ error.message }}</h2>
<br>
<img src="~static/icons/error.svg" alt="Error" class="error_banner">
<h2>{{ error.statusCode }}</h2>
<h3>{{ error.message }}</h3>
<p><nuxt-link to="/"><button>Go Home</button></nuxt-link></p>
<p><a href="" @click.prevent="reloadApplication">Reload</a></p>
</div>
@@ -11,14 +11,16 @@
<style lang="scss">
// Center the error page in the viewport.
.page-error {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 100%;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
text-align: center;
}
.error_banner {
width: 256px;
}
</style>
<script>

View File

@@ -187,6 +187,14 @@ export default {
loading: {
color: 'var(--ac-color)'
},
/*
** Customize the loading indicator
*/
loadingIndicator: {
name: 'pulse',
color: 'var(--ac-color)',
background: 'var(--bg-color)'
},
/*
** Global CSS
*/

1
static/icons/error.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 7.9 KiB