fix(theme-classic): apply width/height for footer logos without href (#6508)

This commit is contained in:
Kishan Gajera 2022-01-29 10:16:40 -05:00 committed by GitHub
parent 2553f1fb5a
commit dda92eb2b6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -179,7 +179,12 @@ function Footer(): JSX.Element | null {
/> />
</Link> </Link>
) : ( ) : (
<FooterLogo alt={logo.alt} sources={sources} /> <FooterLogo
alt={logo.alt}
sources={sources}
width={logo.width}
height={logo.height}
/>
)} )}
</div> </div>
)} )}