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
parent
commit
4a7d63a187
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions
  1. 2
      frontend/components/layout/LocaleMenu.vue
  2. 2
      frontend/components/layout/TheHeader.vue

2
frontend/components/layout/LocaleMenu.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 }}

2
frontend/components/layout/TheHeader.vue

@ -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>

Loading…
Cancel
Save