jack 13 ore fa
parent
commit
36e1519be2
1 ha cambiato i file con 6 aggiunte e 0 eliminazioni
  1. 6 0
      src/views/components/element/FrameElement/index.vue

+ 6 - 0
src/views/components/element/FrameElement/index.vue

@@ -85,6 +85,7 @@ const handleSelectElement = (e: MouseEvent | TouchEvent, canMove = true) => {
   width: 100%;
   height: 100%;
   cursor: move;
+  overflow: hidden;
 }
 .drag-handler {
   position: absolute;
@@ -121,4 +122,9 @@ const handleSelectElement = (e: MouseEvent | TouchEvent, canMove = true) => {
   left: 0;
   right: 0;
 }
+.rotate-wrapper {
+  width: 100%;
+  height: 100%;
+  overflow: hidden;
+}
 </style>