mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 11:42:29 +08:00
fix: tooltip covered by high z index element (#295)
This commit is contained in:
parent
a838ba7b46
commit
4134e915ce
|
@ -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…
Reference in New Issue
Block a user