We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ffd155 commit 2369cb2Copy full SHA for 2369cb2
src/block/horizontal-scroller/frontend-horizontal-scroller.js
@@ -94,6 +94,14 @@ class StackableHorizontalScroller {
94
el.addEventListener( 'mousedown', mouseDownHandler )
95
96
el._StackableHasInitHorizontalScroller = true
97
+
98
+ // Fixes grid rendering issues by toggling the gridAutoFlow property
99
+ requestAnimationFrame( () => {
100
+ el.style.gridAutoFlow = 'row'
101
102
+ el.style.gridAutoFlow = 'column'
103
+ } )
104
105
} )
106
}
107
0 commit comments