Quill 中的方程式框不完全可见

Equation box in Quill is not completely visible

enter image description here

尝试在我的项目中使用 Quill。我在两列中使用 Bootstrap class 'row'。右侧列有 Quill,除了这个方程式框(见图片)外,一切正常。有人可以帮忙吗?

我使用 bounds 解决了这个问题。这是代码片段:

let quill = new Quill('#editor-container', {
            modules: {
            formula: true,
            syntax: true,
            toolbar: '#toolbarOptions'
            },
            placeholder: 'Compose your question here...',
            theme: 'snow',
            bounds: '#editor-container'
        });