Skip to content

Commit

Permalink
fix(projects): text level low. #409
Browse files Browse the repository at this point in the history
  • Loading branch information
alleycharming committed Apr 26, 2024
1 parent 50630df commit 2389186
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion src/components/common/menu-toggler.vue
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,11 @@ const icon = computed(() => {
</script>

<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" />
</ButtonIcon>
</template>
Expand Down
2 changes: 1 addition & 1 deletion src/components/custom/button-icon.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const props = withDefaults(defineProps<Props>(), {
icon: '',
tooltipContent: '',
tooltipPlacement: 'bottom',
zIndex: 99
zIndex: 98
});
interface ButtonProps {
Expand Down

0 comments on commit 2389186

Please sign in to comment.