diff --git a/pages/scene/+Page.vue b/pages/scene/+Page.vue index 9e5ab46..41cb73c 100644 --- a/pages/scene/+Page.vue +++ b/pages/scene/+Page.vue @@ -873,8 +873,9 @@ function copySummary() { @media(--small-10) { .banner { flex-direction: column; - justify-content: center; + align-items: center; border-radius: 0; + max-height: none; } .poster-container { @@ -898,8 +899,10 @@ function copySummary() { .album { display: flex; flex-wrap: nowrap; + flex-shrink: 0; overflow-x: auto; - height: 8rem; + height: 6rem; + padding: .5rem; } .photo-container { diff --git a/src/entities.js b/src/entities.js index 9ea630b..c1029af 100644 --- a/src/entities.js +++ b/src/entities.js @@ -98,6 +98,7 @@ export async function fetchEntitiesById(entityIds, options = {}) { .groupBy('entities.id', 'parents.id', 'affiliates.id'), options.includeChildren ? knex('entities') .whereIn('entities.parent_id', entityIds) + .whereNot('type', 'info') .orderBy('slug') : [], ]);