Browse Source
Merge pull request #1942 from doccano/fix/1940
Set z-index to the header
pull/1947/head
Hiroki Nakayama
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
2 additions and
2 deletions
-
frontend/components/layout/LocaleMenu.vue
-
frontend/components/layout/TheHeader.vue
|
|
@ -1,5 +1,5 @@ |
|
|
|
<template> |
|
|
|
<v-menu open-on-hover offset-y> |
|
|
|
<v-menu open-on-hover offset-y z-index="200"> |
|
|
|
<template #activator="{ on }"> |
|
|
|
<v-btn text v-on="on"> |
|
|
|
{{ $i18n.locale }} |
|
|
|
|
|
@ -49,7 +49,7 @@ |
|
|
|
<v-btn v-if="!isAuthenticated" outlined @click="$router.push(localePath('/auth'))"> |
|
|
|
{{ $t('user.login') }} |
|
|
|
</v-btn> |
|
|
|
<v-menu v-if="isAuthenticated" offset-y> |
|
|
|
<v-menu v-if="isAuthenticated" offset-y z-index="200"> |
|
|
|
<template #activator="{ on }"> |
|
|
|
<v-btn on icon v-on="on"> |
|
|
|
<v-icon>{{ mdiDotsVertical }}</v-icon> |
|
|
|