added padding to android wip screen

This commit is contained in:
Danny Coates 2019-02-26 11:11:06 -08:00
parent 1c44d1d0f9
commit d55f0247de
No known key found for this signature in database
GPG Key ID: 4C442633C62E00CB
1 changed files with 6 additions and 2 deletions

View File

@ -38,7 +38,11 @@ module.exports = function(state, emit) {
`;
button = '';
} else if (state.archive.numFiles > 0) {
content = archiveTile.wip(state, emit);
content = html`
<section class="p-4 h-full w-full">
${archiveTile.wip(state, emit)}
</section>
`;
button = '';
} else {
content =
@ -52,7 +56,7 @@ module.exports = function(state, emit) {
}
return html`
<main class="flex relative h-full w-full">
<main class="main">
${state.modal && modal(state, emit)} ${content}
<div class="fixed pin-r pin-b">
${button}