diff options
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 ? |