14 lines
225 B
SCSS
14 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;
|
||
|
}
|