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

@ -26,16 +26,16 @@ module.exports = function(state, emit) {
return html`
<main class="main">
${state.modal && modal(state, emit)}
<div
<section
class="flex flex-col items-center justify-center text-center bg-white m-6 px-6 py-8 border border-grey-light md:border-none md:px-12 md:py-16 shadow w-full md:h-full"
>
<h1 class="">${strings.header}</h1>
<p class=" mt-4 mb-8 max-w-md leading-normal">${strings.description}</p>
<p class="mt-4 mb-8 max-w-md leading-normal">${strings.description}</p>
${why}
<a href="${url}" class="btn rounded-lg mt-8 px-8">
${strings.button}
</a>
</div>
</section>
</main>
`;
};