diff --git a/src/renderer/components/bouncing_slippi_logo/bouncing_slippi_logo.tsx b/src/renderer/components/bouncing_slippi_logo/bouncing_slippi_logo.tsx index 43e0584b0..738d7c1dc 100644 --- a/src/renderer/components/bouncing_slippi_logo/bouncing_slippi_logo.tsx +++ b/src/renderer/components/bouncing_slippi_logo/bouncing_slippi_logo.tsx @@ -21,13 +21,14 @@ const styles = stylex.create({ height: "80px", width: "80px", }, - logo: { + logo: (logoUrl: string) => ({ + backgroundImage: `url("${logoUrl}")`, backgroundSize: "contain", backgroundRepeat: "no-repeat", position: "absolute", height: "60px", width: "80px", - }, + }), onlyBounce: { animation: `${bounceAnimation} 0.6s infinite alternate`, }, @@ -62,12 +63,12 @@ export const BouncingSlippiLogo = () => { return (
);