From d1e9f71edb9ff2090733b724135fd24a584db82d Mon Sep 17 00:00:00 2001 From: Luke Vella Date: Thu, 30 Jan 2025 13:47:47 +0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=84=20Set=20explicity=20width=20and=20?= =?UTF-8?q?height=20on=20logo=20(#1531)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/web/src/components/logo.tsx | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/apps/web/src/components/logo.tsx b/apps/web/src/components/logo.tsx index dcd0435d9..85d07ebcf 100644 --- a/apps/web/src/components/logo.tsx +++ b/apps/web/src/components/logo.tsx @@ -23,12 +23,8 @@ export const Logo = ({ priority={true} className={className} src="/static/logo.svg" - style={{ - width: sizes[size].width, - height: "auto", - }} - width={0} - height={0} + width={sizes[size].width} + height={sizes[size].height} alt="Rallly" /> );