diff --git a/android/pages/home.js b/android/pages/home.js
index 7a79a859..1f066e55 100644
--- a/android/pages/home.js
+++ b/android/pages/home.js
@@ -38,7 +38,11 @@ module.exports = function(state, emit) {
`;
button = '';
} else if (state.archive.numFiles > 0) {
- content = archiveTile.wip(state, emit);
+ content = html`
+
+ ${archiveTile.wip(state, emit)}
+
+ `;
button = '';
} else {
content =
@@ -52,7 +56,7 @@ module.exports = function(state, emit) {
}
return html`
-
+
${state.modal && modal(state, emit)} ${content}
${button}