Skip to content

Commit

Permalink
Use correct webkit properties
Browse files Browse the repository at this point in the history
  • Loading branch information
elainen committed Oct 8, 2018
1 parent 81c8f79 commit abaf8ca
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/simple-actions/hz-switch/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,11 @@ class Switch extends Component<Props, State> {
return (
<div
style={{
'-webkit-user-select': 'none',
'-khtml-user-select': 'none',
'-moz-user-select': 'none',
'-ms-user-select': 'none',
'user-select': 'none',
WebkitUserSelect: 'none',
KhtmlUserSelect: 'none',
MozUserSelect: 'none',
msUserSelect: 'none',
userSelect: 'none',
}}
>
<Pressible
Expand Down

0 comments on commit abaf8ca

Please sign in to comment.