Skip to content

Commit

Permalink
Fix settings handler
Browse files Browse the repository at this point in the history
  • Loading branch information
alchaplinsky committed Aug 24, 2019
1 parent a65aca7 commit 9783030
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,10 @@ const Settings = () => {
const [section, setSection] = useState('vault')

return (
<div className="settings" onClick={() => setModal(!modal)}>
<SettingsIcon width="28" height="28" />
<div className="settings">
<div onClick={() => setModal(!modal)}>
<SettingsIcon width="28" height="28" />
</div>
{modal && (
<Modal onClose={() => setModal(!modal)}>
<div className="preferences">
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/stylesheets/components/sidebar.sass
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
width: 50px
height: 36px
margin: 0 auto 10px auto
padding: 7px 0 7px
padding: 11px 0 3px
cursor: pointer
text-align: center
border-radius: 50%
Expand Down

0 comments on commit 9783030

Please sign in to comment.