Problem with hairline in List View with Swipeout

If I use List View + Swipeout with the link, then the line of list after the list disappears (ios) or is disappears full (material).

image

image

Framework7 v. 2.2.5
Chrome (last version)

It is Chrome rendering issue, you can add the following styles to fix it:

.list ul:before,
.list ul:after {
  transform-style: preserve-3d;
  backface-visibility: hidden;
}
1 Like

That helped. Thank you.