mirror of
https://github.com/lukevella/rallly.git
synced 2025-04-28 17:56:37 +02:00
💄 Set explicity width and height on logo (#1531)
This commit is contained in:
parent
7cee993808
commit
d1e9f71edb
1 changed files with 2 additions and 6 deletions
|
@ -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"
|
||||
/>
|
||||
);
|
||||
|
|
Loading…
Add table
Reference in a new issue