fix(projects): fix pin-toggler toolTip zIndex

This commit is contained in:
Soybean
2024-03-27 22:32:35 +08:00
parent 6b5132c169
commit f89e6c0361
2 changed files with 5 additions and 3 deletions

View File

@ -17,7 +17,7 @@ const icon = computed(() => (props.pin ? 'mdi-pin-off' : 'mdi-pin'));
<ButtonIcon
:tooltip-content="pin ? $t('icon.pin') : $t('icon.unpin')"
tooltip-placement="bottom-start"
trigger-parent
:z-index="100"
>
<SvgIcon :icon="icon" />
</ButtonIcon>