mirror of
https://github.com/HDInnovations/UNIT3D-Community-Edition.git
synced 2026-04-24 03:59:08 -05:00
2a9d499597
Show all posters in a collection, and remove the backdrop previously used for collections.
35 lines
566 B
SCSS
35 lines
566 B
SCSS
.collection__list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 16px;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.collection__list-item {
|
|
list-style: none;
|
|
}
|
|
|
|
.collection {
|
|
padding: 16px;
|
|
border-radius: 16px;
|
|
background-color: rgba(0, 0, 0, 0.1);
|
|
color: var(--collection-fg);
|
|
}
|
|
|
|
.collection__link {
|
|
color: var(--collection-fg);
|
|
}
|
|
|
|
.collection__posters {
|
|
grid-auto-columns: 150px;
|
|
grid-auto-flow: column;
|
|
gap: 12px 24px;
|
|
overflow-x: auto;
|
|
padding: 5px;
|
|
}
|
|
|
|
.collection__posters.collection__posters {
|
|
display: grid;
|
|
}
|