Procházet zdrojové kódy

Merge branch 'local' of http://192.168.0.115:3000/bill/fuse-code into local

bill před 2 roky
rodič
revize
499df3d751
1 změnil soubory, kde provedl 10 přidání a 1 odebrání
  1. 10 1
      src/layout/main.vue

+ 10 - 1
src/layout/main.vue

@@ -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>