Is there a way to apply padding to the Draft.js Editor so that clicking on the padding area selects the Editor?
If I add padding directly to the container div of the Editor, the padding displays properly but clicking on it does not enable writing in the Editor:
<div style={{padding:8}>
<Editor onChange={this.onChange} />
</div>