Move stacked button in list view correctly

This commit is contained in:
Benjamin Lu
2026-01-23 13:03:52 -08:00
parent aea78da01d
commit 8a5023831d

View File

@@ -71,6 +71,10 @@
</div>
</div>
<div v-if="$slots.actions" class="relative z-1 flex items-center gap-2">
<slot name="actions" />
</div>
<div
v-if="typeof stackCount === 'number' && stackCount > 1"
class="relative z-1 flex shrink-0 items-center"
@@ -86,10 +90,6 @@
<i aria-hidden="true" class="icon-[lucide--chevron-down] size-3" />
</Button>
</div>
<div v-if="$slots.actions" class="relative z-1 flex items-center gap-2">
<slot name="actions" />
</div>
</div>
</template>