Browse Source

fix: tooltip covered by high z index element (#295)

tags/0.3.2
Joel 2 years ago
parent
commit
4134e915ce
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      web/app/components/base/tooltip/index.tsx

+ 1
- 1
web/app/components/base/tooltip/index.tsx View File

@@ -35,7 +35,7 @@ const Tooltip: FC<TooltipProps> = ({
<ReactTooltip
id={selector}
content={content}
className={classNames('!bg-white !text-xs !font-normal !text-gray-700 !shadow-lg !opacity-100', className)}
className={classNames('!z-[999] !bg-white !text-xs !font-normal !text-gray-700 !shadow-lg !opacity-100', className)}
place={position}
clickable={clickable}
isOpen={disabled ? false : undefined}

Loading…
Cancel
Save