mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-19 08:07:48 +01:00
d51e5ab65d
- fix: Translation fixes - fix: Various fixes - feat: PB translations, configuration changes - fix: Bugfixes GitOrigin-RevId: 55f8b148c42a296162fc707c36a5146ca0073b4b
46 lines
688 B
Vue
46 lines
688 B
Vue
<template lang="pug">
|
|
b-container(v-if="visible")
|
|
.loader
|
|
.message {{text}}
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'Loader',
|
|
props: {
|
|
text: {
|
|
type: String,
|
|
required: true
|
|
},
|
|
visible: {
|
|
type: Boolean,
|
|
required: true
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.loader {
|
|
width: 100%;
|
|
height: 100%;
|
|
position: fixed;
|
|
z-index: 100;
|
|
background-color: black;
|
|
opacity: 0.3;
|
|
top: 0;
|
|
left: 0;
|
|
}
|
|
.message {
|
|
padding: 50px 20px;
|
|
background: white;
|
|
width: 30%;
|
|
text-align: center;
|
|
position: fixed;
|
|
left: 35%;
|
|
top: 100px;
|
|
z-index: 1000;
|
|
font-size: 26px;
|
|
}
|
|
</style>
|