Skip to content

Commit 3cf87d1

Browse files
committed
fix: add card-style hover animation to integration pills
1 parent 7d83791 commit 3cf87d1

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

src/pages/index.astro

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -767,6 +767,8 @@ const duration2 = (row2.length / 2 * pixelsPerItem) / pixelsPerSecond;
767767
backdrop-filter: blur(8px);
768768
font-size: 0.85rem;
769769
color: var(--text-secondary);
770+
transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
771+
cursor: default;
770772
}
771773

772774
.integration-pill :global(svg) {
@@ -778,7 +780,8 @@ const duration2 = (row2.length / 2 * pixelsPerItem) / pixelsPerSecond;
778780

779781
.integration-pill:hover {
780782
border-color: var(--coral-bright);
781-
transform: translateY(-2px);
783+
transform: translateY(-4px);
784+
box-shadow: 0 8px 24px color-mix(in srgb, var(--coral-bright) 20%, transparent);
782785
}
783786

784787
.integrations-link {

0 commit comments

Comments
 (0)