updated error page

This commit is contained in:
Danny Coates 2018-02-21 16:28:40 -08:00
parent 1d00646b17
commit c80d01c648
No known key found for this signature in database
GPG Key ID: 4C442633C62E00CB
2 changed files with 2 additions and 13 deletions

View File

@ -1,11 +0,0 @@
.errorPage {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
text-align: center;
}
.errorPage__img {
margin: 51px 0 71px;
}

View File

@ -3,8 +3,8 @@ const assets = require('../../../common/assets');
module.exports = function(state) {
return html`
<div class="errorPage">
<div class="page">
<div class="title">${state.translate('errorPageHeader')}</div>
<img class="errorPage__img" src="${assets.get('illustration_error.svg')}"/>
<img src="${assets.get('illustration_error.svg')}"/>
</div>`;
};