diff --git a/entrypoints/sidepanel/layouts/collections/CollectionListView.styles.ts b/entrypoints/sidepanel/layouts/collections/CollectionListView.styles.ts index cd13917..4faa635 100644 --- a/entrypoints/sidepanel/layouts/collections/CollectionListView.styles.ts +++ b/entrypoints/sidepanel/layouts/collections/CollectionListView.styles.ts @@ -46,6 +46,10 @@ export const useStyles_CollectionListView = makeStyles({ listView: { display: "grid", - gridTemplateColumns: "repeat(auto-fit, minmax(360px, 1fr))" + + "@media screen and (min-width: 360px)": + { + gridTemplateColumns: "repeat(auto-fit, minmax(360px, 1fr))" + } } });