This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

fix: limit collections on semble aside to 3, support overflow

This is more of a temp design until we add more content + bound overflow scroll to each container using scrollArea component

+2 -2
+2 -2
src/webapp/features/semble/containers/sembleAside/SembleAside.tsx
··· 13 13 const collectionsData = await getCollectionsForUrl(props.url); 14 14 15 15 return ( 16 - <AppShellAside p={'sm'}> 16 + <AppShellAside p={'sm'} style={{ overflow: 'scroll' }}> 17 17 <Stack gap={'xl'}> 18 18 <Stack gap={'xs'}> 19 19 <Text fz={'xl'} fw={600}> ··· 65 65 </Text> 66 66 ) : ( 67 67 <Stack gap={'xs'}> 68 - {collectionsData.collections.map((col) => ( 68 + {collectionsData.collections.slice(0, 3).map((col) => ( 69 69 <CollectionCard key={col.uri} collection={col} /> 70 70 ))} 71 71 </Stack>