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
|
1 sat
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
}
|
}
|
||||||
trigger={['hover']}
|
trigger={['hover', 'focus']}
|
||||||
>
|
>
|
||||||
{children}
|
{children}
|
||||||
</OverlayTrigger>
|
</OverlayTrigger>
|
||||||
|
|
|
@ -237,4 +237,11 @@ footer {
|
||||||
|
|
||||||
.flipY {
|
.flipY {
|
||||||
animation: flipY 4s linear infinite;
|
animation: flipY 4s linear infinite;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (hover:none), (hover:on-demand) {
|
||||||
|
.tooltip {
|
||||||
|
visibility: hidden;
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue