allow swiping on the the grid carousel title area (#1521)

This commit is contained in:
jeffvli
2026-01-21 23:57:53 -08:00
parent 8b0b53029c
commit 3405f853e3
2 changed files with 74 additions and 2 deletions
@@ -12,6 +12,13 @@
display: flex;
align-items: center;
justify-content: space-between;
touch-action: pan-x;
cursor: grab;
user-select: none;
}
.navigation:active {
cursor: grabbing;
}
.custom-title-container {
@@ -32,6 +39,13 @@
grid-template-columns: repeat(var(--cards-to-show, 2), minmax(0, 1fr));
gap: var(--theme-spacing-md);
overflow: hidden;
touch-action: pan-x;
cursor: grab;
user-select: none;
}
.grid:active {
cursor: grabbing;
}
.page-indicator {