Skip to content

Commit

Permalink
fix: text select in modals safari (#177)
Browse files Browse the repository at this point in the history
  • Loading branch information
thenick775 authored Sep 22, 2024
1 parent 7ec266d commit 802c35f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion gbajs3/src/components/modals/modal-container.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ const modalStyles = {
display: 'flex',
touchAction: 'none',
flexDirection: 'column' as const,
userSelect: 'text' as const
userSelect: 'text' as const,
WebkitUserSelect: 'text' as const
}
};

Expand Down

0 comments on commit 802c35f

Please sign in to comment.