Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.

Commit

Permalink
fix: clickable area for saving/deleting icon
Browse files Browse the repository at this point in the history
  • Loading branch information
hopetambala committed Aug 16, 2019
1 parent a5f7e97 commit bdb5f6f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/features/tooltip/Tooltip.js
Original file line number Diff line number Diff line change
Expand Up @@ -164,11 +164,11 @@ class TooltipControls extends React.Component {
<b><h1><input className={tooltipStyle.inputStyle} type="text" value={this.state.note.note.title} onChange={this.handleChangeTitle} placeholder="Title"/></h1></b>
<p><textarea className={tooltipStyle.inputStyle} type="text" value={this.state.note.note.content} onChange={this.handleChangeContent} placeholder="Take a note..."/></p>
<div style={{textAlign:"center"}}>
<label className="button circular">
<FontAwesomeIcon style={{margin:"2.5px"}} icon={faSave} onClick={this.saveNote}/>
<label className="button circular" onClick={this.saveNote}>
<FontAwesomeIcon style={{margin:"2.5px"}} icon={faSave} />
</label>
<label className="button circular">
<FontAwesomeIcon style={{margin:"2.5px"}} icon={faTrashAlt} onClick={this.removeNote} />
<label className="button circular" onClick={this.removeNote}>
<FontAwesomeIcon style={{margin:"2.5px"}} icon={faTrashAlt} />
</label>
</div>
</div>
Expand Down

0 comments on commit bdb5f6f

Please sign in to comment.