Unverified Commit 4134e915 authored by Joel's avatar Joel Committed by GitHub

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

parent a838ba7b
...@@ -35,7 +35,7 @@ const Tooltip: FC<TooltipProps> = ({ ...@@ -35,7 +35,7 @@ const Tooltip: FC<TooltipProps> = ({
<ReactTooltip <ReactTooltip
id={selector} id={selector}
content={content} 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} place={position}
clickable={clickable} clickable={clickable}
isOpen={disabled ? false : undefined} isOpen={disabled ? false : undefined}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment