a89cb17ce4
* Test out a horizontal scroll for upcoming (tile only for now) * - add support for list layout - add following label on home page - clan up css and naming conventions * Update header type + show only if scheduled streams are showing
13 lines
225 B
SCSS
13 lines
225 B
SCSS
.swipe-list {
|
|
display: flex;
|
|
flex-wrap: nowrap;
|
|
overflow-x: auto;
|
|
scroll-snap-type: x mandatory;
|
|
}
|
|
|
|
.swipe-list__item {
|
|
width: 80vw;
|
|
margin-right: var(--spacing-s);
|
|
flex-shrink: 0;
|
|
scroll-snap-align: start;
|
|
}
|