RotateHandler.vue 378 B

12345678910111213141516171819202122232425
  1. <template>
  2. <div class="rotate-handler"></div>
  3. </template>
  4. <script lang="ts" setup>
  5. </script>
  6. <style lang="scss" scoped>
  7. .rotate-handler {
  8. position: absolute;
  9. width: 10px;
  10. height: 10px;
  11. top: -25px;
  12. margin-left: -5px;
  13. border: 1px solid $themeColor;
  14. background-color: #fff;
  15. border-radius: 1px;
  16. cursor: grab;
  17. &:active {
  18. cursor: grabbing;
  19. }
  20. }
  21. </style>