diff options
author | Tayane Fernandes <tayane.rmf@gmail.com> | 2017-02-09 11:22:09 -0200 |
---|---|---|
committer | Tayane Fernandes <tayane.rmf@gmail.com> | 2017-02-09 11:22:09 -0200 |
commit | dd4f8569848b4dbd688c07c03b17a898ed6df25d (patch) | |
tree | e40ea5596c9c204c4c12337d9be3be7e88e8cddf /web-ui/src/account_recovery | |
parent | a76b524c147c79fefa7943230a33e7904af3c070 (diff) |
[#922] Add logo and icons to the header
with @anikarni
Diffstat (limited to 'web-ui/src/account_recovery')
-rw-r--r-- | web-ui/src/account_recovery/page.js | 8 | ||||
-rw-r--r-- | web-ui/src/account_recovery/page.scss | 7 |
2 files changed, 11 insertions, 4 deletions
diff --git a/web-ui/src/account_recovery/page.js b/web-ui/src/account_recovery/page.js index 449f391f..2ae26d12 100644 --- a/web-ui/src/account_recovery/page.js +++ b/web-ui/src/account_recovery/page.js @@ -29,7 +29,11 @@ export const Page = ({ t }) => ( <Header /> <section> <div className='container'> - <img className='backup-account-image' src='assets/images/forgot-my-password.svg' alt={t('backup-account.image-description')} /> + <img + className='backup-account-image' + src='assets/images/forgot-my-password.svg' + alt={t('backup-account.image-description')} + /> <form> <h1>{t('backup-account.title')}</h1> <p>{t('backup-account.paragraph1')}</p> @@ -37,7 +41,7 @@ export const Page = ({ t }) => ( <InputField name='email' label={t('backup-account.input-label')} /> <SubmitButton buttonText={t('backup-account.button')} /> <div> - <a href='/'> + <a href='/' className='link'> <i className='fa fa-angle-left' aria-hidden='true' /> <span>{t('back-to-inbox')}</span> </a> diff --git a/web-ui/src/account_recovery/page.scss b/web-ui/src/account_recovery/page.scss index c28aa4d2..a344b957 100644 --- a/web-ui/src/account_recovery/page.scss +++ b/web-ui/src/account_recovery/page.scss @@ -27,6 +27,10 @@ body, #root { min-height: 100%; } +a { + text-decoration: none; +} + .page { font-family: "Open Sans", "Microsoft YaHei", "Hiragino Sans GB", "Hiragino Sans GB W3", "微软雅黑", "Helvetica Neue", Arial, sans-serif; background: $dark_blue; /* For browsers that do not support gradients */ @@ -54,8 +58,7 @@ p { margin-bottom: 0.5em; } -a { - text-decoration: none; +.link { color: $dark_blue; font-style: italic; |