Skip to content

Commit

Permalink
fix: touch action none
Browse files Browse the repository at this point in the history
  • Loading branch information
crashmax-dev committed Oct 21, 2023
1 parent d568ea0 commit d5a0ace
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/frontend/src/components/alchemy-item.vue
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,14 @@ watch(() => props.element.position, () => {
.alchemy-item {
cursor: pointer;
transition: 0.3s;
touch-action: manipulation;
touch-action: none;
position: fixed;
inline-size: min-content;
overflow-wrap: break-word;
z-index: 999;
}
.alchemy-item:active {
.alchemy-item:active, .alchemy-item:hover {
transition: none;
z-index: 9999;
}
Expand Down

0 comments on commit d5a0ace

Please sign in to comment.