diff --git a/app/components/wallet-summary.js b/app/components/wallet-summary.js index 1d2fc4e..fb89b13 100644 --- a/app/components/wallet-summary.js +++ b/app/components/wallet-summary.js @@ -1,11 +1,11 @@ // @flow import React from 'react'; import styled from 'styled-components'; -import { IoIosMore } from 'react-icons/io'; import { TextComponent } from './text'; import { RowComponent } from './row'; import { DropdownComponent } from './dropdown'; +import MenuIcon from '../assets/images/menu_icon.svg'; import theme from '../theme'; @@ -21,7 +21,7 @@ const Wrapper = styled.div` const AllAddresses = styled(TextComponent)` margin-bottom: 2.5px; - font-size: 0.625em; + font-size: ${props => `${props.theme.fontSize.text}em`}; `; const ValueBox = styled.div` @@ -48,9 +48,10 @@ const SeeMoreButton = styled.button` align-items: center; justify-content: center; outline: none; + border-style: solid; border-radius: 100%; border-width: 1px; - border-color: ${props => (props.isOpen ? props.theme.colors.activeItem : props.theme.colors.text)}; + border-color: ${props => (props.isOpen ? props.theme.colors.activeItem : props.theme.colors.inactiveItem)}; background-color: transparent; padding: 5px; cursor: pointer; @@ -63,6 +64,11 @@ const SeeMoreButton = styled.button` } `; +const SeeMoreIcon = styled.img` + width: 25px; + height: 25px; +`; + type Props = { total: number, shielded: number, @@ -81,26 +87,26 @@ export const WalletSummaryComponent = ({ label='All Addresses' renderTrigger={(toggleVisibility, isOpen) => ( - + )} options={addresses.map(addr => ({ label: addr, onClick: x => x }))} /> - - + + - - - + + + -