fixed some element heights at md width

This commit is contained in:
Danny Coates 2018-11-15 09:27:17 -08:00
parent 43c596fb99
commit d67716f26b
No known key found for this signature in database
GPG Key ID: 4C442633C62E00CB
1 changed files with 2 additions and 2 deletions

View File

@ -189,13 +189,13 @@ module.exports = function(state, emit, archive) {
module.exports.wip = function(state, emit) {
return html`
<article class="flex flex-col bg-white z-20" id="wip">
<article class="flex flex-col bg-white z-20 md:h-full" id="wip">
${
list(
Array.from(state.archive.files)
.reverse()
.map(f => fileInfo(f, remove(f))),
'list-reset overflow-y-scroll px-4 bg-blue-lightest md:max-h-half-screen',
'list-reset overflow-y-scroll px-4 bg-blue-lightest md:h-full md:max-h-half-screen',
'bg-white px-2 mt-3 border border-grey-light rounded'
)
}