fix(components): user profile fix

ensure that sidebar border goes underneath the profile administrator badge
This commit is contained in:
☙◦ The Tablet ❀ GamerGirlandCo ◦❧ 2024-11-12 17:07:57 -05:00
parent 7a3243be9d
commit 37c5689f7d
Signed by: tablet
GPG Key ID: 924A5F6AF051E87C
2 changed files with 2 additions and 3 deletions

View File

@ -71,7 +71,6 @@
<a-layout-sider <a-layout-sider
:trigger="null" :trigger="null"
:theme="darkBool ? 'dark' : 'light'" :theme="darkBool ? 'dark' : 'light'"
:collapsed="nav"
:collapsed-width="0" :collapsed-width="0"
:collapsible="true" :collapsible="true"
v-model:collapsed="collapsed" v-model:collapsed="collapsed"
@ -92,7 +91,7 @@
color: 'white', color: 'white',
border: '2.4px solid #fffFFF80', border: '2.4px solid #fffFFF80',
top: '75vh', top: '75vh',
'z-index': 99999999, 'z-index': 9,
}" }"
:theme="darko ? 'dark' : 'light'" :theme="darko ? 'dark' : 'light'"
:breakpoint="'lg'" :breakpoint="'lg'"

View File

@ -37,7 +37,7 @@
</template> </template>
</a-card-meta> </a-card-meta>
</div> </div>
<a-badge-ribbon color="#f14668" v-if="userInfo?.profile.isAdmin"> <a-badge-ribbon style="z-index: 20" color="#f14668" v-if="userInfo?.profile.isAdmin">
<template #text> Administrator </template> <template #text> Administrator </template>
</a-badge-ribbon> </a-badge-ribbon>
</template> </template>