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 24e37e9 + 610b265 commit 33165ffCopy full SHA for 33165ff
src/components/Staking/StakingGuides.tsx
@@ -1,15 +1,9 @@
1
// Libraries
2
import React from "react"
3
-import styled from "@emotion/styled"
4
5
// Components
6
import CardList from "../CardList"
7
-
8
-const StyledCardList = styled(CardList)`
9
- display: flex;
10
- flex-direction: column;
11
- gap: 1rem;
12
-`
+import { Stack } from "@chakra-ui/react"
13
14
export interface IProps {}
15
@@ -32,7 +26,7 @@ const StakingGuides: React.FC<IProps> = () => {
32
26
},
33
27
]
34
28
35
- return <StyledCardList content={guides} />
29
+ return <Stack as={CardList} direction="column" gap={4} content={guides} />
36
30
}
37
31
38
export default StakingGuides
0 commit comments