Merge pull request #413 from alleycharming/main

fix(projects): text level low. #409
This commit is contained in:
Soybean 2024-04-26 23:13:52 +08:00 committed by GitHub
commit 145300e95c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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>