Skip to content

Commit

Permalink
fix(dropdown): set dropdown content z-index
Browse files Browse the repository at this point in the history
  • Loading branch information
stafyniaksacha committed Oct 13, 2023
1 parent 9edb06a commit 711419c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions components/base/BaseDropdown.vue
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,7 @@ const placementValue = computed(() => {
flip
:offset="props.flavor === 'context' ? 6 : 4"
:placement="placementValue"
:z-index="20"
>
<MenuButton as="template">
<slot name="button" v-bind="{ open, close }">
Expand Down
1 change: 1 addition & 0 deletions components/form/BaseAutocomplete.vue
Original file line number Diff line number Diff line change
Expand Up @@ -367,6 +367,7 @@ function removeItem(item: any) {
@hide="query = ''"
:flip="!props.multiple"
:offset="5"
:z-index="20"
>
<ComboboxLabel
v-if="
Expand Down
1 change: 1 addition & 0 deletions components/form/BaseListbox.vue
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,7 @@ const value = computed(() => {
leave-to-class="opacity-0"
flip
:offset="5"
:z-index="20"
>
<ListboxLabel
v-if="
Expand Down

0 comments on commit 711419c

Please sign in to comment.