hide modal nav buttons until working

This commit is contained in:
zach
2026-03-06 14:22:19 -05:00
parent ce56d08efe
commit 4eed1869a6
2 changed files with 2 additions and 7 deletions

View File

@@ -595,8 +595,3 @@ $tiers: (
transform: scale(1);
}
}
.card-nav-prev.swiping,
.card-nav-next.swiping {
animation: swipe-feedback 0.3s ease-out;
}

View File

@@ -118,12 +118,12 @@ const ebaySearchUrl = (card: any) => {
<div class="text-secondary col-auto">{card?.variant}</div>
</div>
<div class="d-flex gap-2 align-items-center">
<button type="button" class="btn btn-sm btn-outline-secondary card-nav-prev" title="Previous card (← or swipe right)" aria-label="Previous card">
<button type="button" class="btn btn-sm btn-outline-secondary card-nav-prev d-none" title="Previous card (← or swipe right)" aria-label="Previous card">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<polyline points="15 18 9 12 15 6"></polyline>
</svg>
</button>
<button type="button" class="btn btn-sm btn-outline-secondary card-nav-next" title="Next card (→ or swipe left)" aria-label="Next card">
<button type="button" class="btn btn-sm btn-outline-secondary card-nav-next d-none" title="Next card (→ or swipe left)" aria-label="Next card">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<polyline points="9 18 15 12 9 6"></polyline>
</svg>