canvas-editor-engine 1.0.6 → 1.0.7
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/web-component.js +3 -3
- package/package.json +1 -1
package/dist/web-component.js
CHANGED
@@ -18,9 +18,9 @@ class WebComponentWrapper {
|
|
18
18
|
editorWrap.style.position = 'relative';
|
19
19
|
editorWrap.style.display = 'flex';
|
20
20
|
const toolsWrap = document.createElement('div');
|
21
|
-
|
22
|
-
|
23
|
-
|
21
|
+
toolsWrap.className = 'tools-wrap';
|
22
|
+
toolsWrap.style.position = 'relative';
|
23
|
+
toolsWrap.style.display = 'flex';
|
24
24
|
base.appendChild(stylesWrap);
|
25
25
|
base.appendChild(editorWrap);
|
26
26
|
base.appendChild(toolsWrap);
|