fix(projects): text level low. #409

This commit is contained in:
alleycharming 2024-04-26 22:48:21 +08:00
parent 50630df6e9
commit 2389186dcd
2 changed files with 6 additions and 2 deletions

View File

@ -36,7 +36,11 @@ const icon = computed(() => {
</script> </script>
<template> <template>
<ButtonIcon :tooltip-content="collapsed ? $t('icon.expand') : $t('icon.collapse')" tooltip-placement="bottom-start"> <ButtonIcon
:tooltip-content="collapsed ? $t('icon.expand') : $t('icon.collapse')"
tooltip-placement="bottom-start"
:z-index="99"
>
<SvgIcon :icon="icon" /> <SvgIcon :icon="icon" />
</ButtonIcon> </ButtonIcon>
</template> </template>

View File

@ -25,7 +25,7 @@ const props = withDefaults(defineProps<Props>(), {
icon: '', icon: '',
tooltipContent: '', tooltipContent: '',
tooltipPlacement: 'bottom', tooltipPlacement: 'bottom',
zIndex: 99 zIndex: 98
}); });
interface ButtonProps { interface ButtonProps {