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.
2 parents 44e2b72 + 2d15d99 commit d496f07Copy full SHA for d496f07
src/components/ShardChainsList.tsx
@@ -1,14 +1,10 @@
1
import React from "react"
2
-import styled from "@emotion/styled"
3
-import CardList, { CardListItem } from "./CardList"
4
import { useIntl } from "react-intl"
+import CardList, { CardListItem } from "./CardList"
5
+import { Box } from "@chakra-ui/react"
6
import { translateMessageId } from "../utils/translations"
7
8
-const Container = styled.div`
9
- margin-bottom: 4rem;
10
-`
11
-
12
export interface IProps {}
13
14
const ShardChainsList: React.FC<IProps> = () => {
@@ -102,9 +98,9 @@ const ShardChainsList: React.FC<IProps> = () => {
102
98
]
103
99
104
100
return (
105
- <Container>
101
+ <Box mb="4rem">
106
<CardList content={reads} />
107
- </Container>
+ </Box>
108
)
109
}
110
0 commit comments