diff --git a/web/src/components/SortableList.vue b/web/src/components/SortableList.vue
index 10c1995..860cd4d 100644
--- a/web/src/components/SortableList.vue
+++ b/web/src/components/SortableList.vue
@@ -1,5 +1,6 @@
@@ -101,16 +132,7 @@
:id="'movable-' + index"
:key="index"
:class="[ 'movable', movingIdx === index ? 'moving' : undefined ]"
- :style="
- movingIdx >= 0
- && ((movingCurrentIdx === index && movingIdx !== index)
- || (movingCurrentIdx === index - 1 && index - 1 === movingIdx)
- )
- ? `margin-top: ${ movableSize }px;`
- : (movingIdx === index
- ? `top: ${offset}px;`
- : ''
- )"
+ :style="style(index)"
>
start( e, index )">