mirror of
https://github.com/janishutz/MusicPlayer.git
synced 2026-09-10 14:25:24 +02:00
feat: basic sortable list, missing auto-scroll
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user