Skip to content

Commit

Permalink
increase icon size of focus areas (#122)
Browse files Browse the repository at this point in the history
  • Loading branch information
haseebk authored Jan 23, 2023
1 parent c7f2fca commit a0dad92
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/components/CreateMapathon/Summary.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,28 +115,28 @@ class Summary extends React.Component {
{this.props.focusAreas[0] && (
<Icon
glyph="entrylg"
size={1}
size={2}
color={colors.darkestGrey}
alt="Entrance"
style={{ margin: 'auto 0' }}
style={{ margin: 'auto 5px auto 0px' }}
/>
)}
{this.props.focusAreas[1] && (
<Icon
glyph="interior"
size={1.0}
size={2.5}
color={colors.darkestGrey}
alt="Interior"
style={{ margin: 'auto 0' }}
style={{ margin: 'auto 5px auto 0px' }}
/>
)}
{this.props.focusAreas[2] && (
<Icon
glyph="restroom"
size={1}
size={2}
color={colors.darkestGrey}
alt="Restroom"
style={{ margin: 'auto 0' }}
style={{ margin: 'auto 5px auto 0px' }}
/>
)}
</FocusAreas>
Expand Down

0 comments on commit a0dad92

Please sign in to comment.