Skip to content

Commit

Permalink
reduce size of send tooltip icons
Browse files Browse the repository at this point in the history
  • Loading branch information
schnogz committed May 1, 2019
1 parent 72c83cd commit 4ddfb41
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import { Icon } from '../Icons'
const TooltipIcon = styled(Icon)`
display: inline-flex;
margin: 0px 5px;
font-size: ${props => (props.size ? props.size : '16px')};
`

export default TooltipIcon
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,9 @@ class Tooltips extends React.PureComponent {
defaultMessage='Add a note to remind yourself what this transaction relates to. This note will be private and only seen by you.'
/>
</Tooltip>
<Tooltip id='sendether.firststep.sharetooltip'>
<Tooltip id='sendeth.firststep.description'>
<FormattedMessage
id='modals.sendether.firststep.sharetooltip'
id='modals.sendeth.firststep.description'
defaultMessage='Add a note to remind yourself what this transaction relates to. This note will be private and only seen by you.'
/>
</Tooltip>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ const FirstStep = props => {
defaultMessage='Description'
/>
<TooltipHost id='sendBch.firststep.share_tooltip'>
<TooltipIcon name='question-in-circle' />
<TooltipIcon name='question-in-circle' size='12px' />
</TooltipHost>
</FormLabel>
<Field
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ const FirstStep = props => {
defaultMessage='Description'
/>
<TooltipHost id='sendbtc.firststep.sharetooltip'>
<TooltipIcon name='question-in-circle' />
<TooltipIcon name='question-in-circle' size='12px' />
</TooltipHost>
</FormLabel>
<Field
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -225,8 +225,8 @@ const FirstStep = props => {
id='modals.sendeth.firststep.desc'
defaultMessage='Description'
/>
<TooltipHost id='sendeth.firststep.sharetooltip'>
<TooltipIcon name='question-in-circle' />
<TooltipHost id='sendeth.firststep.description'>
<TooltipIcon name='question-in-circle' size='12px' />
</TooltipHost>
</FormLabel>
<Field
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ const FirstStep = props => {
defaultMessage='Memo'
/>
<TooltipHost id='sendxlm.firststep.memotooltip'>
<TooltipIcon name='question-in-circle' />
<TooltipIcon name='question-in-circle' size='12px' />
</TooltipHost>
</FormLabel>
<MemoField>
Expand Down Expand Up @@ -235,7 +235,7 @@ const FirstStep = props => {
defaultMessage='Description'
/>
<TooltipHost id='sendxlm.firststep.sharetooltip'>
<TooltipIcon name='question-in-circle' />
<TooltipIcon name='question-in-circle' size='12px' />
</TooltipHost>
</FormLabel>
<Field
Expand Down

0 comments on commit 4ddfb41

Please sign in to comment.