Ver Fonte

#524 fix joystick

Falko Schindler há 2 anos atrás
pai
commit
939bd069cb
1 ficheiros alterados com 4 adições e 3 exclusões
  1. 4 3
      nicegui/elements/joystick.vue

+ 4 - 3
nicegui/elements/joystick.vue

@@ -1,12 +1,12 @@
 <template>
-  <div></div>
+  <div><div></div></div>
 </template>
 
 <script>
 export default {
   mounted() {
     const joystick = nipplejs.create({
-      zone: this.$el,
+      zone: this.$el.children[0],
       position: { left: "50%", top: "50%" },
       dynamicPage: true,
       ...this.options,
@@ -22,9 +22,10 @@ export default {
 </script>
 
 <style scoped>
-:scope {
+:scope > div {
   background-color: AliceBlue;
   width: 10em;
   height: 10em;
+  position: relative;
 }
 </style>