feat: swipe to select block

Swipe also prevents scroll.
This commit is contained in:
Tienson Qin
2025-05-25 05:12:05 +08:00
parent fe92a70a1e
commit f4e49a4b11
4 changed files with 97 additions and 161 deletions

View File

@@ -540,6 +540,11 @@
.ls-block {
@apply flex-1 relative py-0.5 transition-[background-color] mx-auto;
width: 100%;
transform: translateX(0);
transition: transform 0.3s ease;
will-change: transform;
container-type: inline-size;
container-name: ls-block;
@@ -1141,3 +1146,7 @@ html.is-mac {
@apply mb-2;
}
}
.swipe-item {
touch-action: pan-y; /* disables horizontal scrolling on touch */
}