|
@@ -1,7 +1,9 @@
|
|
|
<template>
|
|
|
<ui-editor-layout @click.stop id="layout-app" class="editor-layout" :class="layoutClassNames">
|
|
|
<div class="laser-layer">
|
|
|
- <div class="scene" ref="sceneRef"></div>
|
|
|
+ <div class="scene" ref="sceneRef">
|
|
|
+ <div id="direction"></div>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
|
|
|
<template v-if="loaded" style="height: 100%">
|
|
@@ -91,4 +93,11 @@ const stopSdkInstalWatch = watchEffect(() => {
|
|
|
background-color: #ccc;
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+#direction {
|
|
|
+ right: calc(var(--editor-menu-right) + var(--editor-toolbox-width)) !important;
|
|
|
+ top: calc(var(--header-top) + var(--editor-head-height)) !important;
|
|
|
+ margin: 10px;
|
|
|
+ transition: top .3s ease, right .3s ease;
|
|
|
+}
|
|
|
</style>
|