mirror of
https://github.com/donaldzou/WGDashboard.git
synced 2025-10-02 15:26:17 +00:00
Fix for #893
This commit is contained in:
@@ -34,7 +34,7 @@ const collapse = ref(false)
|
||||
<div
|
||||
@click="collapse = !collapse"
|
||||
role="button"
|
||||
class="card-header rounded-0 sticky-top z-5 bg-body-secondary border-0 border-bottom text-white d-flex">
|
||||
class="card-header rounded-0 sticky-top bg-body-secondary border-0 border-bottom text-white d-flex">
|
||||
<small><samp>{{ configuration }}</samp></small>
|
||||
<a role="button" class="ms-auto text-white" >
|
||||
<i class="bi bi-chevron-compact-down" v-if="collapse"></i>
|
||||
|
@@ -30,9 +30,10 @@ const deleteSuccess = async () => {
|
||||
|
||||
<template>
|
||||
<div class="text-body w-100 h-100 pb-2 position-relative">
|
||||
|
||||
<div class="w-100 h-100 card rounded-3">
|
||||
<Transition name="zoom">
|
||||
<ClientSettings v-if="settings" @close="settings = false"></ClientSettings>
|
||||
<ClientSettings v-if="settings" @close="settings = false" class="z-5"></ClientSettings>
|
||||
</Transition>
|
||||
<div class="border-bottom z-0">
|
||||
<div class="d-flex text-body align-items-center sticky-top p-3 bg-body-tertiary rounded-top-3" style="border-top-right-radius: 0 !important;">
|
||||
@@ -64,7 +65,7 @@ const deleteSuccess = async () => {
|
||||
</div>
|
||||
<div
|
||||
:class="{'hide': !route.params.id}"
|
||||
class="col-sm-8 clientViewerContainer">
|
||||
class="col-sm-8 clientViewerContainer z-0">
|
||||
<RouterView></RouterView>
|
||||
</div>
|
||||
</div>
|
||||
|
Reference in New Issue
Block a user