Skip to content

Commit

Permalink
Fix icon size
Browse files Browse the repository at this point in the history
  • Loading branch information
kreafox committed Apr 29, 2021
1 parent 0c3a534 commit e59d8ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ColumnsBlock/ColumnVariations.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default ({ data, onChange, children, variants }) => {
{variants.map(({ icon, defaultData, title }, index) => (
<Card key={index} onClick={() => onChange(defaultData)}>
<Card.Content>
<Icon name={icon} size="55" />
<Icon name={icon} size="55px" />
{title ? <p>{title}</p> : ''}
</Card.Content>
</Card>
Expand Down

0 comments on commit e59d8ae

Please sign in to comment.