1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-02-02 22:57:36 +01:00

30 lines
564 B
HTML
Raw Normal View History

2018-02-11 16:10:39 -08:00
<div class="loading-page {{shown ? '' : 'hidden'}}">
2018-02-06 20:54:49 -08:00
<LoadingSpinner />
</div>
<style>
.loading-page {
position: absolute;
top: 0;
left: 0;
right: 0;
height: 150px;
display: flex;
align-items: center;
justify-content: center;
z-index: 50;
2018-02-11 16:10:39 -08:00
transition: opacity 0.25s linear;
2018-02-06 20:54:49 -08:00
}
</style>
<script>
import LoadingSpinner from './LoadingSpinner.html'
export default {
2018-02-11 16:10:39 -08:00
oncreate() {
setTimeout(() => {
this.set({shown: true})
}, 200)
},
2018-02-06 20:54:49 -08:00
components: {
LoadingSpinner
}
}
</script>