diff --git a/app/main.css b/app/main.css index 2d1d66c6..74a9eaff 100644 --- a/app/main.css +++ b/app/main.css @@ -42,11 +42,6 @@ progress::-webkit-progress-value { @apply bg-white; } -.info { - height: 90%; - max-height: 32rem; -} - .header-logo { background-image: url('../assets/send_logo_white.svg'); background-position: left; @@ -150,8 +145,10 @@ progress::-webkit-progress-value { @apply flex-1; @apply self-center; @apply items-center; - @apply my-10; + @apply m-auto; + @apply py-8; + min-height: 33rem; max-height: 40rem; width: calc(100% - 3rem); } @@ -162,7 +159,5 @@ progress::-webkit-progress-value { .main > section { @apply shadow-md; - - min-height: 30rem; } } diff --git a/app/routes.js b/app/routes.js index 3d21753a..cb616c42 100644 --- a/app/routes.js +++ b/app/routes.js @@ -16,7 +16,7 @@ function banner(state, emit) { function body(main) { return function(state, emit) { - const b = html`
+ const b = html` ${banner(state, emit)} ${header(state, emit)} ${main(state, emit)} diff --git a/app/ui/home.js b/app/ui/home.js index 3f3af8d6..813c3286 100644 --- a/app/ui/home.js +++ b/app/ui/home.js @@ -27,7 +27,7 @@ module.exports = function(state, emit) { ${state.modal && modal(state, emit)}