RotateHandler.vue 416 B

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