@raphael_tillman
To change the margins on the toolbar in Quill.js, you can use CSS to target the specific elements and adjust their styling. Here is an example of how you can change the margins on the toolbar:
1 2 3 |
<div id="toolbar"> <!-- Toolbar buttons go here --> </div> |
1 2 3 |
<div id="toolbar" class="custom-toolbar"> <!-- Toolbar buttons go here --> </div> |
1 2 3 |
.custom-toolbar { margin: 20px; /* Adjust the margin values as needed */ } |
By following these steps, you can easily change the margins on the Quill.js toolbar to fit your design requirements.