fix transparent logout button
This commit is contained in:
parent
7c2f3cad8c
commit
730cb4b31a
1 changed files with 14 additions and 7 deletions
|
|
@ -13,13 +13,15 @@
|
||||||
|
|
||||||
<!-- Settings div. -->
|
<!-- Settings div. -->
|
||||||
<div id="settings" v-show="toggleSettings">
|
<div id="settings" v-show="toggleSettings">
|
||||||
|
</div>
|
||||||
|
|
||||||
<button
|
<button
|
||||||
|
v-if="toggleSettings"
|
||||||
class="settingsOption"
|
class="settingsOption"
|
||||||
@click="onLogout"
|
@click="onLogout"
|
||||||
>
|
>
|
||||||
Logout
|
Logout
|
||||||
</button>
|
</button>
|
||||||
</div>
|
|
||||||
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
@ -141,6 +143,11 @@
|
||||||
border: none;
|
border: none;
|
||||||
outline: none;
|
outline: none;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
position: absolute;
|
||||||
|
left: 50%;
|
||||||
|
top: 50%;
|
||||||
|
transform: translate(-50%, -50%);
|
||||||
|
z-index: 5;
|
||||||
}
|
}
|
||||||
|
|
||||||
.settingsOption:hover {
|
.settingsOption:hover {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue