Skip to content

Commit

Permalink
cardbody: don't center rows
Browse files Browse the repository at this point in the history
  • Loading branch information
makinbacon21 committed Mar 7, 2024
1 parent 35262eb commit afa4e5b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions components/cardbody.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ export default function CardBody(props: CardBodyProps) {
const { filteredData } = props;
if (filteredData) {
return (
<div className="container text-center">
<div className="row justify-content-md-center">
<div className="container">
<div className="row">
{
use(filteredData).map((item, index) => (
<Card key={index} {...item} />
Expand All @@ -22,8 +22,8 @@ export default function CardBody(props: CardBodyProps) {
)
} else {
return (
<div className="container text-center">
<div className="row justify-content-md-center">
<div className="container">
<div className="row">
<Card key={1} />
<Card key={2} />
<Card key={3} />
Expand Down

0 comments on commit afa4e5b

Please sign in to comment.