fix(style): usermenu styles
This commit is contained in:
parent
3f2dfc95b3
commit
90ae581379
|
@ -65,6 +65,8 @@
|
||||||
|
|
||||||
.popover-item {
|
.popover-item {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
color: var(--color) !important;
|
||||||
|
text-decoration: none;
|
||||||
padding-left: 8px;
|
padding-left: 8px;
|
||||||
height: 32px;
|
height: 32px;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
|
@ -70,21 +70,18 @@ const labels = computed(() => ({
|
||||||
{{ labels.notifications }}
|
{{ labels.notifications }}
|
||||||
</Link>
|
</Link>
|
||||||
</PopoverItem>
|
</PopoverItem>
|
||||||
<PopoverItem v-if="store.state.auth.authenticated">
|
<PopoverItem
|
||||||
<Link
|
v-if="store.state.auth.authenticated"
|
||||||
:to="{name: 'profile.overview', params: { username: store.state.auth.username },}"
|
:to="{name: 'profile.overview', params: { username: store.state.auth.username },}"
|
||||||
icon="bi-person-fill"
|
|
||||||
>
|
>
|
||||||
|
<i class="bi bi-person-fill"/>
|
||||||
{{ labels.profile }}
|
{{ labels.profile }}
|
||||||
</Link>
|
|
||||||
</PopoverItem>
|
</PopoverItem>
|
||||||
<PopoverItem v-if="store.state.auth.authenticated">
|
<PopoverItem v-if="store.state.auth.authenticated"
|
||||||
<Link
|
|
||||||
:to="{ path: '/settings' }"
|
:to="{ path: '/settings' }"
|
||||||
icon="bi-gear-fill"
|
|
||||||
>
|
>
|
||||||
|
<i class="bi bi-gear-fill" />
|
||||||
{{ labels.settings }}
|
{{ labels.settings }}
|
||||||
</Link>
|
|
||||||
</PopoverItem>
|
</PopoverItem>
|
||||||
<hr v-if="store.state.auth.authenticated"/>
|
<hr v-if="store.state.auth.authenticated"/>
|
||||||
<PopoverItem @click="store.commit('ui/toggleModal', 'languages')"
|
<PopoverItem @click="store.commit('ui/toggleModal', 'languages')"
|
||||||
|
|
Loading…
Reference in New Issue