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
2 changes: 1 addition & 1 deletion src/components/topmate/TopMateCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const TopMateCard: React.FC<TopMateCardProps> = ({
initial={{ opacity: 0, y: 30, scale: 0.97 }}
animate={{ opacity: 1, y: 0, scale: 1 }}
transition={{ duration: 0.6, ease: [0.25, 0.46, 0.45, 0.94] }}
className="group relative flex h-90 w-full flex-col overflow-hidden rounded-2xl transition-all duration-500 hover:scale-[1.008]"
className="group relative flex min-h-[360px] w-full flex-col overflow-hidden rounded-2xl transition-all duration-500 hover:scale-[1.008]"
style={{
background: isDark ? "#0a0a0a" : "#ffffff",
border: `1px solid ${borderClr}`,
Expand Down
2 changes: 1 addition & 1 deletion src/components/topmate/TopMateSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const TopMateSection = ({ setShowTopmate }) => {
};

return (
<div className="relative flex flex-col w-full h-90">
<div className="relative flex flex-col w-full">
<div className="relative flex w-full flex-col justify-between">
{/* Section header — unified height & centered alignment */}
<motion.div
Expand Down
Loading