diff --git a/src/components/ui/ListItem.scss b/src/components/ui/ListItem.scss index e51de1ac5..9efb2e988 100644 --- a/src/components/ui/ListItem.scss +++ b/src/components/ui/ListItem.scss @@ -21,9 +21,11 @@ } } - body.is-ios &, body.is-android & { + // Using half-pixel height is efficient on iOS but not supported on Android, so `transform` is used instead + body.is-android & { &:not(:last-of-type)::after { - transform: scaleY(0.5); + height: 0.0625rem; + transform: scaleY(0.25); } }