We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9304d05 commit 53e3d48Copy full SHA for 53e3d48
2 files changed
src/features/feed/components/Feed.tsx
@@ -85,7 +85,7 @@ export const Feed = () => {
85
)
86
})}
87
{hasNextPage && (
88
- <div className="loading" ref={infiniteRef}>
+ <div className="feedLoading" ref={infiniteRef}>
89
<PropagateLoader color={'#A9B2BD'} loading={true} size={8} />
90
</div>
91
)}
src/features/feed/components/feed.css
@@ -33,12 +33,12 @@
33
background-color: transparent;
34
}
35
36
- .loading {
+ .feedLoading {
37
display: flex;
38
flex-direction: column;
39
align-items: center;
40
justify-content: center;
41
- grid-column: span 3;
+ grid-column: 1/-1;
42
padding: 16px 0;
43
margin-bottom: 20px;
44
0 commit comments