attempt to fix action overlay issue on mobile
This commit is contained in:
parent
062d5442b8
commit
3920f83e4b
|
@ -9,7 +9,7 @@ export default function ActionTooltip ({ children }) {
|
|||
1 sat
|
||||
</Tooltip>
|
||||
}
|
||||
trigger={['hover']}
|
||||
trigger={['hover', 'focus']}
|
||||
>
|
||||
{children}
|
||||
</OverlayTrigger>
|
||||
|
|
|
@ -238,3 +238,10 @@ footer {
|
|||
.flipY {
|
||||
animation: flipY 4s linear infinite;
|
||||
}
|
||||
|
||||
@media (hover:none), (hover:on-demand) {
|
||||
.tooltip {
|
||||
visibility: hidden;
|
||||
pointer-events: none;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue