diff options
author | lonkaars <l.leblansch@gmail.com> | 2021-01-11 10:05:21 +0100 |
---|---|---|
committer | lonkaars <l.leblansch@gmail.com> | 2021-01-11 10:05:21 +0100 |
commit | a42d22dd4b9ae33884f93d5fac5e672f4598dcaf (patch) | |
tree | d60b854b43ad3cc760317d0f91fa266094501944 /src/components/ui.tsx | |
parent | b66d8444041598cd408c35c2206746e84754b651 (diff) |
pointer on checkboxes
Diffstat (limited to 'src/components/ui.tsx')
-rw-r--r-- | src/components/ui.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/ui.tsx b/src/components/ui.tsx index 4f836c2..29f77ff 100644 --- a/src/components/ui.tsx +++ b/src/components/ui.tsx @@ -112,7 +112,8 @@ export class CheckBox extends Component<{ render() { return <div onClick={this.toggle} style={{ ...this.props.style, - display: "inline-block" + display: "inline-block", + cursor: "pointer" }}> { this.state.on ? |