Skip to content

Commit

Permalink
responsive
Browse files Browse the repository at this point in the history
  • Loading branch information
gbeltranl committed Apr 5, 2022
1 parent f51e87a commit e26b84a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/charCard.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const { v4: uuidv4 } = require("uuid");
export const CharCard = (props) => {
const { name, image, gender, status } = props;
return (
<div className= "p-1 col-3">
<div className= "p-1 col-md-3 col-xs-12 col-sm-6">
<Card style={{ width: '18rem' }} key={uuidv4()}>
<Card.Img variant="top" src={image} />
<Card.Body>
Expand Down

0 comments on commit e26b84a

Please sign in to comment.