From 40cf3846ce4b201d1f80e60925174679edb4bb3c Mon Sep 17 00:00:00 2001 From: aftabrehan Date: Fri, 2 Feb 2024 16:38:47 +0500 Subject: [PATCH] Adjust Elements Hover Duration --- app/layout.tsx | 2 +- components/button.tsx | 2 +- components/card.tsx | 2 +- components/header.tsx | 2 +- components/nav-dropdown.tsx | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/app/layout.tsx b/app/layout.tsx index 2006e58..96ee762 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -28,7 +28,7 @@ export default function RootLayout({
-
+
{children}
diff --git a/components/button.tsx b/components/button.tsx index a0985f8..7336591 100644 --- a/components/button.tsx +++ b/components/button.tsx @@ -40,7 +40,7 @@ export const Button = ({ onClick={onClick} disabled={disabled} className={clsx( - 'h-12 px-5 flex items-center justify-center gap-2 text-base font-medium text-nowrap outline-none rounded-full transition-all duration-200 disabled:opacity-50', + 'h-12 px-5 flex items-center justify-center gap-2 text-base font-medium text-nowrap outline-none rounded-full transition-all duration-300 disabled:opacity-50', !disabled && 'group', variantCls, className diff --git a/components/card.tsx b/components/card.tsx index efe54b6..7add1d4 100644 --- a/components/card.tsx +++ b/components/card.tsx @@ -11,7 +11,7 @@ interface cardProps { export const Card = ({ link, imageUrl, title, description }: cardProps) => ( {title} ( -
+
diff --git a/components/nav-dropdown.tsx b/components/nav-dropdown.tsx index 6231dab..a4a79f1 100644 --- a/components/nav-dropdown.tsx +++ b/components/nav-dropdown.tsx @@ -39,7 +39,7 @@ export const NavDropdown = ({ {label}