From 8c6c0302d5e9600eee59bbb68600c6f3635dcf9f Mon Sep 17 00:00:00 2001 From: sk1982 Date: Mon, 1 Apr 2024 22:00:20 -0400 Subject: [PATCH] space music grid evenly on mobile --- src/components/window-scroller-grid.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/window-scroller-grid.tsx b/src/components/window-scroller-grid.tsx index 970ed5e..61efdaa 100644 --- a/src/components/window-scroller-grid.tsx +++ b/src/components/window-scroller-grid.tsx @@ -23,7 +23,7 @@ export const WindowScrollerGrid = ({ rowSize, colSize, items, chi return ( - (
+ (
{items.slice(index * itemsPerRow, (index + 1) * itemsPerRow).map((item, i) => (
{children(item)}
))}