updated notFound page
This commit is contained in:
parent
c80d01c648
commit
36b419202b
|
@ -14,5 +14,4 @@
|
|||
@import './pages/welcome/welcome.css';
|
||||
@import './pages/preview/preview.css';
|
||||
@import './pages/share/share.css';
|
||||
@import './pages/notFound/notFound.css';
|
||||
@import './pages/unsupported/unsupported.css';
|
||||
|
|
|
@ -3,11 +3,9 @@ const assets = require('../../../common/assets');
|
|||
|
||||
module.exports = function(state) {
|
||||
return html`
|
||||
<div class="notFoundPage">
|
||||
<div class="page">
|
||||
<div class="title">${state.translate('expiredPageHeader')}</div>
|
||||
<div class="notFoundPage__img">
|
||||
<img src="${assets.get('illustration_expired.svg')}" id="expired-img">
|
||||
</div>
|
||||
<img src="${assets.get('illustration_expired.svg')}" id="expired-img">
|
||||
<div class="description">
|
||||
${state.translate('uploadPageExplainer')}
|
||||
</div>
|
||||
|
|
|
@ -1,17 +0,0 @@
|
|||
.notFoundPage {
|
||||
margin: 0 auto 30px;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-direction: column;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.notFoundPage__img {
|
||||
margin: 0 auto;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
max-width: 640px;
|
||||
}
|
Loading…
Reference in New Issue