Try out scroll snapping

This commit is contained in:
Robin Townsend
2023-01-30 09:35:40 -05:00
parent 3805a2f20e
commit 4e73c07cb2
2 changed files with 10 additions and 1 deletions

View File

@@ -3,6 +3,7 @@
flex-grow: 1;
padding: 0 22px;
overflow-y: auto;
scroll-snap-type: both mandatory;
}
.slotGrid {
@@ -14,4 +15,12 @@
}
.slot {
scroll-snap-align: start;
}
.slot:last-child {
/* This causes the grid to scroll up smoothly to the last item when its height
shrinks, and ensures that the user can always scroll the last row fully in
view */
scroll-snap-align: end;
}