Skip to content

Commit 3100d06

Browse files
committed
We had a case where some Windows 10 + Chrome 129 users couldn't scroll
1 parent 8a29899 commit 3100d06

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

apps/builder/app/builder/features/workspace/workspace.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ const workspaceStyle = css({
2424
const canvasContainerStyle = css({
2525
position: "absolute",
2626
transformOrigin: "0 0",
27+
// We had a case where some Windows 10 + Chrome 129 users couldn't scroll iframe canvas.
28+
willChange: "transform",
2729
});
2830

2931
const useMeasureWorkspace = () => {

packages/design-system/src/components/scroll-area.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ const ScrollAreaRoot = styled(Root, {
66
boxSizing: "border-box",
77
overflow: "hidden",
88
display: "grid",
9+
// We had a case where some Windows 10 + Chrome 129 users couldn't scroll style panel.
10+
willChange: "transform",
911
});
1012

1113
const ScrollAreaThumb = styled(Thumb, {

0 commit comments

Comments
 (0)