We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d50c109 commit 65e34a2Copy full SHA for 65e34a2
src/library-authoring/LibraryRecentlyModified.tsx
@@ -48,15 +48,7 @@ const RecentlyModified: React.FC<{ libraryId: string }> = ({ libraryId }) => {
48
title={intl.formatMessage(messages.recentlyModifiedTitle)}
49
contentCount={componentCount}
50
>
51
- <CardGrid
52
- columnSizes={{
53
- sm: 12,
54
- md: 6,
55
- lg: 4,
56
- xl: 3,
57
- }}
58
- hasEqualColumnHeights
59
- >
+ <div className="library-cards-grid">
60
{recentItems.map((contentHit) => (
61
contentHit.type === 'collection' ? (
62
<CollectionCard
@@ -71,7 +63,7 @@ const RecentlyModified: React.FC<{ libraryId: string }> = ({ libraryId }) => {
71
63
/>
72
64
)
73
65
))}
74
- </CardGrid>
66
+ </div>
75
67
</LibrarySection>
76
68
77
69
: null;
0 commit comments