Skip to content

Commit add83ae

Browse files
authoredMay 3, 2024··
fix: make CommandPalette component z-index maximum (#363)
1 parent c9dbbc4 commit add83ae

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎packages/client/src/components/CommandPalette.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,8 @@ useEventListener('keydown', (e) => {
9898
</script>
9999

100100
<template>
101-
<VueOverlay v-if="show" dim class="backdrop-blur-2xl!">
102-
<div flex="~ col" max-h-120 min-h-60 h="60%" w-xl of-hidden border="1 base" rounded-md text-3.75>
101+
<VueOverlay v-if="show" dim class="$ui-z-max-override backdrop-blur-2xl!">
102+
<div flex="~ col" h="60%" border="1 base" m-x-4 max-h-120 min-h-60 w-xl of-hidden rounded-md text-3.75>
103103
<header border="b base" flex-none>
104104
<VueInput v-model="search" placeholder="Type to search..." flat auto-focus class="h12 border-none!" />
105105
</header>

0 commit comments

Comments
 (0)
Please sign in to comment.