attempt to fix action overlay issue on mobile

This commit is contained in:
keyan 2021-07-15 11:27:29 -05:00
parent 062d5442b8
commit 3920f83e4b
2 changed files with 8 additions and 1 deletions

View File

@ -9,7 +9,7 @@ export default function ActionTooltip ({ children }) {
1 sat
</Tooltip>
}
trigger={['hover']}
trigger={['hover', 'focus']}
>
{children}
</OverlayTrigger>

View File

@ -237,4 +237,11 @@ footer {
.flipY {
animation: flipY 4s linear infinite;
}
@media (hover:none), (hover:on-demand) {
.tooltip {
visibility: hidden;
pointer-events: none;
}
}