Skip to content

Commit f62d8c0

Browse files
committed
Fix tab scrolling, closes #1839
1 parent 68c3aad commit f62d8c0

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

src/components/home/WhyElixir.astro

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,10 @@ const cards: WhyCard[] = [
3030
title: "Loved by developers",
3131
body: "Voted one of the world's most admired languages several years in a row.",
3232
tone: "dark",
33-
cta: { label: "See survey results", href: "https://survey.stackoverflow.co/2025/technology#admired-and-desired" },
33+
cta: {
34+
label: "See survey results",
35+
href: "https://survey.stackoverflow.co/2025/technology#admired-and-desired",
36+
},
3437
},
3538
{
3639
title: "Productivity",

src/components/ui/TabFilter.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const {
3030
role="tablist"
3131
aria-label={ariaLabel}
3232
class:list={[
33-
"scrollbar-none relative flex items-stretch overflow-x-auto overflow-y-hidden touch-pan-x overscroll-x-contain",
33+
"scrollbar-none relative flex items-stretch overflow-x-auto overflow-y-hidden touch-auto overscroll-x-contain",
3434
className,
3535
]}
3636
>

0 commit comments

Comments
 (0)