File size: 378 Bytes
89ce340 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
<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> |