See all integrations
diff --git a/components/home/pricing/PricingTable.tsx b/components/home/pricing/PricingTable.tsx
index 5516f7dc7b..1458d38405 100644
--- a/components/home/pricing/PricingTable.tsx
+++ b/components/home/pricing/PricingTable.tsx
@@ -1461,6 +1461,7 @@ export function PricingPlans({ variant }: { variant: DeploymentOption }) {
(
: variant === "text"
? "text"
: "primary";
- const resolvedSize: ButtonSize = size === "small" ? "small" : "default";
+ const resolvedSize: ButtonSize = size === "default" ? "default" : "small";
const innerRef = React.useRef(null);
const isLink = !asChild && Boolean(href);
diff --git a/components/ui/chip-card.tsx b/components/ui/chip-card.tsx
index eb4781e30a..cf968b96f2 100644
--- a/components/ui/chip-card.tsx
+++ b/components/ui/chip-card.tsx
@@ -64,10 +64,10 @@ const ChipCard = React.forwardRef(
noBorder ? "corner-box-corners-flush" : "border border-line-structure corner-box-corners",
withStripes && "with-stripes",
hoverStripes &&
- "group corner-box-hover-stripes transition-[background] duration-180 ease-out",
+ "group/box corner-box-hover-stripes transition-[background] duration-180 ease-out",
className
)}
style={hasCustomCorners ? { ...cornerStyle, ...style } : style}
diff --git a/components/ui/link.tsx b/components/ui/link.tsx
index cfd93ebcc4..2f9837b233 100644
--- a/components/ui/link.tsx
+++ b/components/ui/link.tsx
@@ -25,7 +25,7 @@ const linkVariants = cva(
variant: {
default: "text-foreground hover:text-muted-foreground",
nav: "text-text-tertiary hover:text-text-secondary no-underline font-sans text-[13px] font-[430] leading-[1.2] tracking-[-0.26px] [text-shadow:0_0_0_#B5AFEA]",
- text: "leading-snug font-[430] tracking-[-0.26px] text-text-tertiary underline decoration-line-structure underline-offset-2 transition-colors group-hover:text-text-secondary hover:text-text-primary",
+ text: "leading-snug font-[430] tracking-[-0.26px] text-text-tertiary underline decoration-line-structure underline-offset-2 transition-colors group-hover:text-text-secondary group-hover/box:text-text-secondary hover:text-text-primary",
underline:
"text-text-links underline decoration-1 underline-offset-2 decoration-text-links hover:text-primary hover:decoration-primary font-normal",
button:
diff --git a/style.css b/style.css
index b4c982b2d4..37796e0b3b 100644
--- a/style.css
+++ b/style.css
@@ -838,6 +838,7 @@
.corner-box-corners--hover::before {
opacity: 0;
+ z-index: 20;
transition: opacity 0.2s ease;
}