Skip to content

Commit

Permalink
fix(core): prevent selection when many clicks are made in overlay
Browse files Browse the repository at this point in the history
  • Loading branch information
Enlcxx committed Dec 1, 2018
1 parent 66ce443 commit 08eb9eb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/lib/src/dom/overlay-container.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,8 @@ export class LyOverlayContainer {

const BACKDROP_STYLES = ({
backdrop: {
pointerEvents: 'all'
pointerEvents: 'all',
userSelect: 'none'
}
});

Expand Down

0 comments on commit 08eb9eb

Please sign in to comment.