feature: add roboto font

This commit is contained in:
eliabejr 2018-12-20 16:14:58 -03:00
parent 7eb573f198
commit 9bfa350495
2 changed files with 5 additions and 4 deletions

View File

@ -23,7 +23,7 @@ const Wrapper = styled.div`
const AllAddresses = styled(TextComponent)`
margin-bottom: 2.5px;
font-size: ${props => `${props.theme.fontSize.text}em`};
font-size: ${props => `${props.theme.fontSize.sub}em`};
`;
const ValueBox = styled.div`
@ -39,6 +39,7 @@ const Label = styled(TextComponent)`
const USDValue = styled(TextComponent)`
opacity: 0.5;
font-weight: 300;
`;
const ShieldedValue = styled(Label)`
@ -115,7 +116,7 @@ export const WalletSummaryComponent = ({
<ShieldedValue
value='&#9679; SHIELDED'
isBold
size={theme.fontSize.text * 0.8}
size={theme.fontSize.sub}
/>
<TextComponent
value={`ZEC ${formatNumber({ value: shielded })}`}
@ -130,7 +131,7 @@ export const WalletSummaryComponent = ({
<Label
value='&#9679; TRANSPARENT'
isBold
size={theme.fontSize.text * 0.8}
size={theme.fontSize.sub}
/>
<TextComponent
value={`ZEC ${formatNumber({ value: transparent })}`}

View File

@ -6,7 +6,7 @@
<meta name="theme-color" content="#000000" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="shortcut icon" href="favicon.ico" />
<link href="https://fonts.googleapis.com/css?family=PT+Sans:400,700" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css?family=PT+Sans:400,700|Roboto:300,400,700" rel="stylesheet" />
<title>Zcash Reference Wallet</title>
</head>