Skip to content

Commit

Permalink
Make cards always the same height
Browse files Browse the repository at this point in the history
  • Loading branch information
Guo-William committed Mar 27, 2018
1 parent be8996d commit 2ad01e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pokeboot/assets/js/Move.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export function Move({ type, id, value, turns, isEnabled, moveOnClick }) {
<CardImg top width="100%" src={cardTypes[id]} />
<CardBody className="move white-background">
<CardTitle>{type}</CardTitle>
<CardSubtitle>{value}. In effect for : {turns} turn</CardSubtitle>
<CardSubtitle>{value}<br />In effect for : {turns} turn</CardSubtitle>
<Button onClick={moveOnClick}>Use</Button>
</CardBody>
</div>
Expand Down

0 comments on commit 2ad01e0

Please sign in to comment.