### Has this bug been raised before? - [x] I have checked "open" AND "closed" issues and this is not a duplicate ### Description Can't override the default style **paddingBottom** on the editor itself with the style prop. The default from the readme `{ width: '400px', paddingBottom: '100px' }` My styles: ``` <YooptaEditor style={{width: '100%', paddingBottom: '0px'}} /> ``` The width works but the padding stays 100px. I was able to set it with !important so not urgent. ``` .yoopta-editor { padding-bottom: 0 !important; } ``` **And by the way awesome editor thanks!** ### Screenshots _No response_ ### Do you want to work on this issue? No