marekrozmus / react-swipeable-list

Swipeable list component for React supporting several behaviours (e.g. iOS)
https://marekrozmus.github.io/react-swipeable-list/
MIT License
110 stars 20 forks source link

incomplete closure of swipes #51

Open Starly26 opened 1 year ago

Starly26 commented 1 year ago

If you close actions with a jerk of the mouse, sometimes it does not close completely, see the screenshot type IOS, fullSwipe enabled

Снимок экрана 2023-08-29 в 12 48 32

macOS Big Sur 11.7 Google Chrome 116.0.5845.96

Chance722 commented 4 months ago

same bug. I solved this problem by adding backgorund color to the block and add z-index, then the block can cover the right btn. like this: .swipeable-list-item__content { position: relative; background-color: #fff; z-index: 100; }