1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-24 20:36:40 +07:00

fixed margins on lab

This commit is contained in:
Fedor Katurov 2022-04-08 18:25:35 +07:00
parent 57f37723fa
commit c3537208a3
3 changed files with 24 additions and 10 deletions

View file

@ -56,16 +56,18 @@ const LabGrid: FC<IProps> = () => {
return (
<InfiniteScroll hasMore={hasMore} loadMore={loadMore}>
<Columns>
{nodes.map(node => (
<LabNode
node={node.node}
key={node.node.id}
lastSeen={node.last_seen}
commentCount={node.comment_count}
/>
))}
</Columns>
<div className={styles.wrap}>
<Columns>
{nodes.map(node => (
<LabNode
node={node.node}
key={node.node.id}
lastSeen={node.last_seen}
commentCount={node.comment_count}
/>
))}
</Columns>
</div>
</InfiniteScroll>
);
};