From d282353370757e0e1baf79eaa2efa146b3a0e62a Mon Sep 17 00:00:00 2001 From: AustinMroz Date: Wed, 11 Feb 2026 21:33:05 -0800 Subject: [PATCH] Add z-index to popover component (#8823) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This fixes the inability to see the value control popover in the properties panel. image ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-8823-Add-z-index-to-popover-component-3056d73d365081e6b2dbe15517e4c4e0) by [Unito](https://www.unito.io) --- src/components/ui/Popover.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ui/Popover.vue b/src/components/ui/Popover.vue index 4bdd6dec25..04fe714e97 100644 --- a/src/components/ui/Popover.vue +++ b/src/components/ui/Popover.vue @@ -36,7 +36,7 @@ defineProps<{ :side-offset="5" :collision-padding="10" v-bind="$attrs" - class="rounded-lg p-2 bg-base-background shadow-sm border border-border-subtle will-change-[transform,opacity] data-[state=open]:data-[side=top]:animate-slideDownAndFade data-[state=open]:data-[side=right]:animate-slideLeftAndFade data-[state=open]:data-[side=bottom]:animate-slideUpAndFade data-[state=open]:data-[side=left]:animate-slideRightAndFade" + class="z-1700 rounded-lg p-2 bg-base-background shadow-sm border border-border-subtle will-change-[transform,opacity] data-[state=open]:data-[side=top]:animate-slideDownAndFade data-[state=open]:data-[side=right]:animate-slideLeftAndFade data-[state=open]:data-[side=bottom]:animate-slideUpAndFade data-[state=open]:data-[side=left]:animate-slideRightAndFade" >