Editor.vue
709 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<script>
import CoreEditor from '../components/core/editor/index.js'
import loadPluginMixin from '../mixins/load-plugins.js'
import '../components/core/support/index.js'
export default {
extends: CoreEditor,
mixins: [loadPluginMixin]
}
</script>
<style lang="scss">
$cellSize: 35.6px;
$designerWidth: 320px;
$designerHeight: 568px;
$designerWidthHalf: $designerWidth / 2;
.canvas-wrapper {
position: relative;
top: 5%;
width: $designerWidth;
height: $designerHeight;
border: 1px #ebeaea solid;
margin: 0 auto;
background: #fff;
}
.lb-tabs {
box-shadow: none;
padding: 4px 8px 4px 0;
border: 1px solid #EBEEF5;
height: 100%;
}
.full-height {
height: 100% !important;
}
</style>