mirror of https://github.com/rancher/dashboard.git
First off... fix annoying `logging out` position
This commit is contained in:
parent
4e44f7b462
commit
494acb68d1
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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…
|
<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>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue