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 a4578e4 commit 0ac269fCopy full SHA for 0ac269f
src/Cards/CardList.js
@@ -41,13 +41,15 @@ function CardList(props) {
41
}
42
43
return (
44
- <StackGrid className="container p-0" {...gridSettings}>
45
- {props.cards.map ? (props.cards.map((card, index) => {
46
- return (
47
- <CardItem card={card} key={index} index={index} />
48
- )
49
- })) : null}
50
- </StackGrid>
+ <div className="p-0 m-0 px-sm-1 px-md-2 px-lg-3 px-xl-4">
+ <StackGrid className="container-fluid p-0" {...gridSettings}>
+ {props.cards.map ? (props.cards.map((card, index) => {
+ return (
+ <CardItem card={card} key={index} index={index} />
+ )
+ })) : null}
51
+ </StackGrid>
52
+ </div>
53
)
54
55
0 commit comments