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

View File

@ -6,7 +6,7 @@
<meta name="theme-color" content="#000000" /> <meta name="theme-color" content="#000000" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" /> <meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="shortcut icon" href="favicon.ico" /> <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> <title>Zcash Reference Wallet</title>
</head> </head>