feat: basic sortable list, missing auto-scroll

This commit is contained in:
2026-08-31 16:18:28 +02:00
parent 1d492d5922
commit 0e155831d7
4 changed files with 176 additions and 11 deletions
+25
View File
@@ -0,0 +1,25 @@
.sortable-list {
overflow-y: scroll;
overflow-x: hidden;
height: 100%;
position: relative;
>.grip-target {
width: 100vw;
height: 100vh;
position: fixed;
top: 0;
left: 0;
cursor: grabbing;
}
>.movable {
&.moving {
position: fixed;
}
>i {
cursor: move;
}
}
}