Skip to content

Commit 65e34a2

Browse files
committed
fix: recently modified grid
1 parent d50c109 commit 65e34a2

File tree

1 file changed

+2
-10
lines changed

1 file changed

+2
-10
lines changed

src/library-authoring/LibraryRecentlyModified.tsx

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,7 @@ const RecentlyModified: React.FC<{ libraryId: string }> = ({ libraryId }) => {
4848
title={intl.formatMessage(messages.recentlyModifiedTitle)}
4949
contentCount={componentCount}
5050
>
51-
<CardGrid
52-
columnSizes={{
53-
sm: 12,
54-
md: 6,
55-
lg: 4,
56-
xl: 3,
57-
}}
58-
hasEqualColumnHeights
59-
>
51+
<div className="library-cards-grid">
6052
{recentItems.map((contentHit) => (
6153
contentHit.type === 'collection' ? (
6254
<CollectionCard
@@ -71,7 +63,7 @@ const RecentlyModified: React.FC<{ libraryId: string }> = ({ libraryId }) => {
7163
/>
7264
)
7365
))}
74-
</CardGrid>
66+
</div>
7567
</LibrarySection>
7668
)
7769
: null;

0 commit comments

Comments
 (0)