Skip to content

Commit dc7c538

Browse files
committed
fix: fix three dots menu dropdown items z-index
1 parent b996349 commit dc7c538

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

adminforth/spa/src/components/ThreeDotsMenu.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<!-- Dropdown menu -->
1313
<div
1414
id="listThreeDotsDropdown"
15-
class="z-20 hidden bg-lightThreeDotsMenuBodyBackground divide-y divide-gray-100 rounded-lg shadow w-44 dark:bg-darkThreeDotsMenuBodyBackground dark:divide-gray-600">
15+
class="z-30 hidden bg-lightThreeDotsMenuBodyBackground divide-y divide-gray-100 rounded-lg shadow w-44 dark:bg-darkThreeDotsMenuBodyBackground dark:divide-gray-600">
1616
<ul class="py-2 text-sm text-lightThreeDotsMenuBodyText dark:text-darkThreeDotsMenuBodyText" aria-labelledby="dropdownMenuIconButton">
1717
<li v-for="(item, i) in threeDotsDropdownItems" :key="`dropdown-item-${i}`">
1818
<a href="#"
@@ -23,7 +23,7 @@
2323
'cursor-not-allowed': checkboxes && checkboxes.length === 0 && item.meta?.disabledWhenNoCheckboxes,
2424
}"
2525
@click="injectedComponentClick(i)">
26-
<component :ref="(el: any) => setComponentRef(el, i)" :is="getCustomComponent(item)"
26+
<component :ref="(el: any) => setComponentRef(el, i)" :is="getCustomComponent(item)"
2727
:meta="item.meta"
2828
:resource="coreStore.resource"
2929
:adminUser="coreStore.adminUser"

0 commit comments

Comments
 (0)