| 12345678910111213141516171819202122232425 |
- <template>
- <div class="rotate-handler"></div>
- </template>
- <script lang="ts" setup>
- </script>
- <style lang="scss" scoped>
- .rotate-handler {
- position: absolute;
- width: 10px;
- height: 10px;
- top: -25px;
- margin-left: -5px;
- border: 1px solid $themeColor;
- background-color: #fff;
- border-radius: 1px;
- cursor: grab;
- &:active {
- cursor: grabbing;
- }
- }
- </style>
|