First off... fix annoying `logging out` position

This commit is contained in:
Richard Cox 2023-07-05 11:56:16 +01:00
parent 4e44f7b462
commit 494acb68d1
2 changed files with 14 additions and 3 deletions

View File

@ -3020,6 +3020,9 @@ login:
remember: remember:
label: Remember Username label: Remember Username
logout:
message: Logging Out...
managementNode: managementNode:
customName: Custom Name customName: Custom Name

View File

@ -11,8 +11,16 @@ export default {
<template> <template>
<main class="main-layout"> <main class="main-layout">
<h1 class="text-center mt-50"> <div>
Logging Out&hellip; <h1 v-t="'logout.message'" />
</h1> </div>
</main> </main>
</template> </template>
<style lang="scss" scoped>
main > div {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
</style>