Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export function FeatureCard({
const baseClasses = `
relative
border border-border rounded-xl p-6 bg-card
flex flex-col min-w-[280px] flex-1
flex flex-col
cursor-pointer
transition-all duration-150
hover:border-primary/50 hover:bg-muted/30 hover:scale-[1.02]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export function FeaturesSpotlight({
return (
<>
<div className="my-8">
<div className="flex flex-col md:flex-row gap-4">
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-4">
{cards.map((card) => (
<FeatureCard
key={card.id}
Expand Down