diff --git a/src/views/Wallet/components/LeftNavigation/components/DeviceMenu/components/MenuItems/index.js b/src/views/Wallet/components/LeftNavigation/components/DeviceMenu/components/MenuItems/index.js index 08e3a667..d4b1b4cf 100644 --- a/src/views/Wallet/components/LeftNavigation/components/DeviceMenu/components/MenuItems/index.js +++ b/src/views/Wallet/components/LeftNavigation/components/DeviceMenu/components/MenuItems/index.js @@ -36,10 +36,16 @@ const Divider = styled.div` `; const Label = styled.div` - padding-left: 15px; flex: 1; `; +const IconWrapper = styled.div` + width: 14px; + display: flex; + justify-content: center; + margin-right: 20px; +`; + class MenuItems extends PureComponent { showDeviceMenu() { const { device } = this.props; @@ -78,11 +84,13 @@ class MenuItems extends PureComponent { */} {this.showClone() && ( this.props.duplicateDevice(device)}> - + + + @@ -90,25 +98,31 @@ class MenuItems extends PureComponent { )} {!this.showRenewSession() && ( this.props.acquireDevice()}> - + + + )} this.props.forgetDevice(device)}> - + + + - + + + @@ -127,7 +141,9 @@ class MenuItems extends PureComponent { - + + +