Compare commits

...

1 Commits

Author SHA1 Message Date
testa113
efb0e5ec2a fix(tooltip): make react tooltip stay open EE-3445 2022-06-17 13:10:26 +12:00
2 changed files with 7 additions and 0 deletions

View File

@@ -15,6 +15,12 @@
text-align: center;
font-size: 12px !important;
font-weight: 400;
pointer-events: auto !important;
}
.tooltip:hover{
visibility: visible !important;
opacity: 1 !important;
}
.icon {

View File

@@ -24,6 +24,7 @@ export function Tooltip({ message, position = 'bottom' }: Props) {
place={position}
effect="solid"
className={styles.tooltip}
delayHide={200}
arrowColor="transparent"
/>
</span>