Skip to content

Commit

Permalink
feat(Dialog): ability to style dialog using inline styles (#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
kradio3 committed Nov 23, 2017
1 parent 0111e59 commit d72c165
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Dialog/Dialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@ class Dialog extends Component {
onClick={(e) => { if (onClose) onClose(e); }}
onTransitionEnd={() => { this.setState({ animating: false }); }}
{...ariaHiddenProp}
{...otherProps}
>
<div
className={SURFACE}
onClick={(e) => { e.stopPropagation(); }}
{...otherProps}
>
{children}
</div>
Expand Down

0 comments on commit d72c165

Please sign in to comment.