Add HACK comment and reorganize use other wallet button

This commit is contained in:
Brandon Millman 2018-03-30 15:00:02 -07:00
parent 870da2ab22
commit cdbb3a015f

View File

@ -20,7 +20,12 @@ const styles: Styles = {
height: 80,
},
hrefAdjustment: {
paddingTop: 20, // For some reason when we set the href prop of a FlatButton material-ui reduces the top padding
paddingTop: 20, // HACK: For some reason when we set the href prop of a FlatButton material-ui reduces the top padding
},
otherWalletText: {
fontSize: 14,
color: colors.grey500,
textDecoration: 'underline',
},
};
@ -42,15 +47,12 @@ export const WalletDisconnectedItem: React.StatelessComponent<WalletDisconnected
<ProviderButton isExternallyInjectedProvider={isExternallyInjectedProvider} />
<div className="flex flex-center py2" style={{ paddingBottom: BUTTON_BOTTOM_PADDING }}>
<div className="mx-auto">
<div onClick={props.onToggleLedgerDialog} style={{ cursor: 'pointer' }}>
<img src="/images/ledger_icon.png" style={{ width: LEDGER_ICON_WIDTH }} />
<a
className="px1"
href="javascript:;"
onClick={props.onToggleLedgerDialog}
style={{ fontSize: 14, color: colors.grey500 }}
>
use other wallet
</a>
<span className="px1" style={styles.otherWalletText}>
user other wallet
</span>
</div>
</div>
</div>
</div>