We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b4ff6b commit d9e9751Copy full SHA for d9e9751
1 file changed
packages/super-editor/src/core/presentation-editor/remote-cursors/RemoteCursorRendering.ts
@@ -279,6 +279,7 @@ function renderRemoteCaret(options: {
279
caretEl.style.borderLeft = `${options.cursorStyles.CARET_WIDTH}px solid ${color}`;
280
caretEl.style.pointerEvents = 'none';
281
caretEl.style.transition = 'opacity 100ms ease-out';
282
+ caretEl.style.willChange = 'transform';
283
caretEl.setAttribute('data-client-id', options.cursor.clientId.toString());
284
caretEl.setAttribute('aria-hidden', 'true');
285
0 commit comments