You've already forked AstralRinth
forked from didirus/AstralRinth
* fixed bugs * title case * bugs; ioerror * reset breadcrumbs * more fixes * more fixes * scrolling bug * more fixes * more fixes * clippy * canonicalize fix * fixed requested changes * removed debouncer update
44 lines
710 B
Vue
44 lines
710 B
Vue
<template>
|
|
<div class="page-loading" :class="{ 'app-loading': appLoading }">
|
|
<AnimatedLogo class="initializing-icon" />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { AnimatedLogo } from 'omorphia'
|
|
|
|
defineProps({
|
|
appLoading: Boolean,
|
|
})
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.page-loading {
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100%;
|
|
width: 100%;
|
|
|
|
&.app-loading {
|
|
background-color: #16181c;
|
|
height: 100vh;
|
|
}
|
|
}
|
|
|
|
.initializing-icon {
|
|
width: 12rem;
|
|
height: 12rem;
|
|
|
|
:deep(svg),
|
|
svg {
|
|
width: 12rem;
|
|
height: 12rem;
|
|
fill: var(--color-brand);
|
|
color: var(--color-brand);
|
|
}
|
|
}
|
|
</style>
|