tweaked title and illustration styles

This commit is contained in:
Danny Coates 2019-02-28 15:53:13 -08:00
parent 7716ba6e77
commit 3bd2996c14
No known key found for this signature in database
GPG key ID: 4C442633C62E00CB
6 changed files with 120 additions and 242 deletions

View file

@ -6,25 +6,22 @@ module.exports = function(state, emit) {
return html`
<main class="main">
${state.modal && modal(state, emit)}
<div
class="flex flex-col items-center h-full w-full p-6 z-10 overflow-hidden md:rounded-lg md:shadow-big"
<section
class="flex flex-col items-center justify-center h-full w-full p-6 z-10 overflow-hidden md:rounded-lg md:shadow-big"
>
<h1 class="text-center font-bold my-4 text-2xl">
<h1 class="text-center font-bold my-2">
${state.translate('errorPageHeader')}
</h1>
<p class="pb-2 max-w-md text-center text-grey-darkest leading-normal">
<p class="max-w-md text-center text-grey-darkest leading-normal">
${state.translate('uploadPageExplainer')}
</p>
<img class="max-w-sm" src="${assets.get('error.svg')}" />
<p class="mb-4">
<a
href="/"
class="btn rounded-lg flex items-center mt-4"
role="button"
<img class="my-12 h-48" src="${assets.get('error.svg')}" />
<p class="">
<a href="/" class="btn rounded-lg flex items-center" role="button"
>${state.translate('sendYourFilesLink')}</a
>
</p>
</div>
</section>
</main>
`;
};