added padding to android wip screen
This commit is contained in:
parent
1c44d1d0f9
commit
d55f0247de
1 changed files with 6 additions and 2 deletions
|
@ -38,7 +38,11 @@ module.exports = function(state, emit) {
|
||||||
`;
|
`;
|
||||||
button = '';
|
button = '';
|
||||||
} else if (state.archive.numFiles > 0) {
|
} 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 = '';
|
button = '';
|
||||||
} else {
|
} else {
|
||||||
content =
|
content =
|
||||||
|
@ -52,7 +56,7 @@ module.exports = function(state, emit) {
|
||||||
}
|
}
|
||||||
|
|
||||||
return html`
|
return html`
|
||||||
<main class="flex relative h-full w-full">
|
<main class="main">
|
||||||
${state.modal && modal(state, emit)} ${content}
|
${state.modal && modal(state, emit)} ${content}
|
||||||
<div class="fixed pin-r pin-b">
|
<div class="fixed pin-r pin-b">
|
||||||
${button}
|
${button}
|
||||||
|
|
Loading…
Reference in a new issue