Skip to content

Commit 7820f8c

Browse files
committed
fix: scrolling issue in iOS safari
1 parent 754398a commit 7820f8c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

projects/stream-chat-angular/src/lib/message-list/message-list.component.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,13 @@
55
(scroll)="scrolled()"
66
>
77
<div class="str-chat__reverse-infinite-scroll str-chat__message-list-scroll">
8-
<ul class="str-chat__ul">
8+
<ul class="str-chat__ul" style="-webkit-transform: translate3d(0, 0, 0)">
99
<li
1010
#parentMessageElement
1111
*ngIf="mode === 'thread'"
1212
data-testid="parent-message"
1313
class="str-chat__parent-message-li"
14+
style="-webkit-transform: translate3d(0, 0, 0)"
1415
>
1516
<ng-container
1617
*ngTemplateOutlet="

0 commit comments

Comments
 (0)