Skip to content
Snippets Groups Projects
Unverified Commit fafb8cd2 authored by Samuel Couillard's avatar Samuel Couillard Committed by GitHub
Browse files

Add border-radius to placeholder (#4141)

* Add border-radius to placeholder

* Should be a rounded square not a circle
parent 8ee041d7
No related branches found
No related tags found
No related merge requests found
...@@ -6,7 +6,7 @@ export default function RoomCardPlaceHolder() { ...@@ -6,7 +6,7 @@ export default function RoomCardPlaceHolder() {
<Card id="room-card" border="light"> <Card id="room-card" border="light">
<Card.Body> <Card.Body>
<Placeholder as={Card.Title} animation="glow" className="mb-3"> <Placeholder as={Card.Title} animation="glow" className="mb-3">
<Placeholder style={{ height: '65px', width: '65px' }} /> <Placeholder style={{ height: '65px', width: '65px', 'border-radius': '10%' }} />
</Placeholder> </Placeholder>
<Placeholder as={Card.Title} animation="glow"> <Placeholder as={Card.Title} animation="glow">
<Placeholder xs={5} size="sm" /> <Placeholder xs={5} size="sm" />
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment