canvas-editor-engine 1.0.9 → 1.0.11
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/web-component.js +2 -0
- package/package.json +1 -1
package/dist/web-component.js
CHANGED
@@ -11,12 +11,14 @@ class WebComponentWrapper {
|
|
11
11
|
base.className = 'wc-editor';
|
12
12
|
base.style.position = 'relative';
|
13
13
|
base.style.display = 'flex';
|
14
|
+
base.style.overflow = 'hidden';
|
14
15
|
const stylesWrap = document.createElement('div');
|
15
16
|
stylesWrap.className = 'styles-wrap';
|
16
17
|
const editorWrap = document.createElement('div');
|
17
18
|
editorWrap.className = 'editor-wrap';
|
18
19
|
editorWrap.style.position = 'relative';
|
19
20
|
editorWrap.style.display = 'flex';
|
21
|
+
editorWrap.style.overflow = 'hidden';
|
20
22
|
const toolsWrap = document.createElement('div');
|
21
23
|
toolsWrap.className = 'tools-wrap';
|
22
24
|
toolsWrap.style.position = 'relative';
|