Skip to content

Commit

Permalink
♻️ Add lisk logo for v2 layout and icon for choose avatar step
Browse files Browse the repository at this point in the history
  • Loading branch information
massao committed Jan 3, 2019
1 parent fd233d6 commit 61a0a4c
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 5 deletions.
7 changes: 7 additions & 0 deletions src/assets/images/icons-v2/avatar.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/assets/images/lisk-logo-v2.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions src/components/headerV2/headerV2.css
Expand Up @@ -11,15 +11,15 @@
flex-direction: row;
height: 100px;
justify-content: space-between;
padding: 33px 40px;
padding: 21px 32px;
position: absolute;
top: 0;
width: 100%;
}

.logo {
height: 32px;
width: 27px;
height: 56px;
width: 56px;

& > img {
display: block;
Expand Down
2 changes: 1 addition & 1 deletion src/components/headerV2/headerV2.js
Expand Up @@ -2,7 +2,7 @@ import React from 'react';
import { Link } from 'react-router-dom';
import { translate } from 'react-i18next';
import { SecondaryButtonV2 } from '../toolbox/buttons/button';
import logo from '../../assets/images/Lisk-Logo.svg';
import logo from '../../assets/images/lisk-logo-v2.svg';
import routes from '../../constants/routes';
import styles from './headerV2.css';

Expand Down
6 changes: 5 additions & 1 deletion src/components/registerV2/chooseAvatar.js
Expand Up @@ -9,6 +9,7 @@ import { FontIcon } from '../fontIcon';
import { PrimaryButtonV2, SecondaryButtonV2 } from '../toolbox/buttons/button';
import AccountVisual from '../accountVisual';
import styles from './registerV2.css';
import avatar from '../../assets/images/icons-v2/avatar.svg';

class ChooseAvatar extends React.Component {
constructor() {
Expand Down Expand Up @@ -40,7 +41,10 @@ class ChooseAvatar extends React.Component {
return (
<React.Fragment>
<div className={`${styles.titleHolder} ${grid['col-xs-10']}`}>
<h1>{t('Choose your Avatar')}</h1>
<h1>
<img src={avatar} />
{t('Choose your Avatar')}
</h1>
<p>{
t('Each Avatar is a visual representation of the address, making it unique.')
}</p>
Expand Down
6 changes: 6 additions & 0 deletions src/components/registerV2/registerV2.css
Expand Up @@ -42,11 +42,17 @@
text-align: center;

& > h1 {
display: flex;
font-size: 24px;
font-weight: 600;
justify-content: center;
letter-spacing: 0.1px;
line-height: 50px;
margin: 0;

& > img {
margin-right: 16px;
}
}

& > p {
Expand Down

0 comments on commit 61a0a4c

Please sign in to comment.