From d59c55c6ce05c2ad4b8c3e36008c90392dce2770 Mon Sep 17 00:00:00 2001 From: Liam Date: Sun, 14 Apr 2024 18:51:34 +0100 Subject: [PATCH] fix logo --- src/components/logo.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/logo.tsx b/src/components/logo.tsx index 28c593d..671576a 100644 --- a/src/components/logo.tsx +++ b/src/components/logo.tsx @@ -7,7 +7,7 @@ export default function Logo({ size = 30 }: Readonly<{ size?: number }>) { alt={"The Logo"} width={size} height={size} - className="w-fit h-fit pl-2" + className={`w-[${size}px] h-[${size}px]`} /> ); }