safe page rebranding wip

This commit is contained in:
Mikhail Mikheev 2019-08-30 19:32:58 +04:00
parent d09b27df85
commit de16921f60
4 changed files with 8 additions and 6 deletions

View File

@ -3,6 +3,7 @@
border: none; border: none;
text-decoration: underline; text-decoration: underline;
cursor: pointer; cursor: pointer;
font-family: inherit;
} }
.sm { .sm {

View File

@ -1,5 +1,7 @@
// @flow // @flow
import { lg, sm, background } from '~/theme/variables' import {
lg, sm, background, secondaryText,
} from '~/theme/variables'
export const styles = () => ({ export const styles = () => ({
heading: { heading: {
@ -15,6 +17,7 @@ export const styles = () => ({
close: { close: {
height: '25px', height: '25px',
width: '25px', width: '25px',
color: secondaryText,
}, },
detailsContainer: { detailsContainer: {
backgroundColor: background, backgroundColor: background,

View File

@ -20,9 +20,6 @@ type Props = SelectorProps & {
const vault = require('../assets/vault.svg') const vault = require('../assets/vault.svg')
const styles = { const styles = {
page: {
letterSpacing: '-1px',
},
icon: { icon: {
height: mediumFontSize, height: mediumFontSize,
color: secondary, color: secondary,
@ -38,7 +35,6 @@ const styles = {
display: 'flex', display: 'flex',
alignItems: 'center', alignItems: 'center',
marginLeft: xs, marginLeft: xs,
fontWeight: 'bolder',
}, },
} }
@ -46,7 +42,7 @@ const Opening = ({
classes, name = 'Safe creation process', tx, network, classes, name = 'Safe creation process', tx, network,
}: Props) => ( }: Props) => (
<Page align="center"> <Page align="center">
<Paragraph className={classes.page} color="secondary" size="xxl" weight="bolder" align="center"> <Paragraph color="primary" size="xxl" weight="bold" align="center">
{name} {name}
</Paragraph> </Paragraph>
<Block margin="lg" align="center"> <Block margin="lg" align="center">

View File

@ -7,6 +7,7 @@ const fontColor = '#001428'
const fancyColor = '#f02525' const fancyColor = '#f02525'
const warningColor = '#ffc05f' const warningColor = '#ffc05f'
const errorColor = '#f02525' const errorColor = '#f02525'
const secondaryTextOrSvg = '#B2B5B2'
const connectedColor = '#008C73' const connectedColor = '#008C73'
const disabled = '#5D6D74' const disabled = '#5D6D74'
const xs = '4px' const xs = '4px'
@ -23,6 +24,7 @@ module.exports = {
disabled, disabled,
background, background,
fontColor, fontColor,
secondaryText: secondaryTextOrSvg,
fancy: fancyColor, fancy: fancyColor,
warning: warningColor, warning: warningColor,
error: errorColor, error: errorColor,