Improved mobile scene album layout. Removed info channels from network children.
This commit is contained in:
parent
ba47d25ab5
commit
5321b08f76
|
@ -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 {
|
||||
|
|
|
@ -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') : [],
|
||||
]);
|
||||
|
||||
|
|
Loading…
Reference in New Issue