Peter Blanchard

Results 2 comments of Peter Blanchard
trafficstars

I wanted to accomplish the same thing ... This is the CSS i used and the result: ion-modal { --border-radius: 10px; padding-left: 15px; padding-right: 15px; } ion-modal.auto-height::part(content) { position: relative;...

Here is how I got it working with Typescript. Here is my Codesandbox: https://codesandbox.io/p/sandbox/react-quill-typescript-undo-redo-sjs6v4 ` let quillEditor: any; handlers: { undo: () => { return quillEditor?.history.undo(); }, redo: () =>...