rm spotlight media min-w
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Martti Malmi 2023-12-07 23:43:26 +02:00
parent 94ae8847cc
commit 6d0b3a0be5

View File

@ -75,11 +75,11 @@ export function SpotlightMedia(props: SpotlightMediaProps) {
autoPlay={true} autoPlay={true}
loop={true} loop={true}
controls={true} controls={true}
className="max-h-screen max-w-full min-w-[600px]" className="max-h-screen max-w-full"
/> />
); );
} else { } else {
return <ProxyImg src={image} className="max-h-screen max-w-full min-w-[600px]" />; return <ProxyImg src={image} className="max-h-screen max-w-full" />;
} }
}, [image, isVideo]); }, [image, isVideo]);