rm spotlight media min-w
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Martti Malmi 2023-12-07 23:43:26 +02:00
parent 94ae8847cc
commit 6d0b3a0be5
1 changed files with 2 additions and 2 deletions

View File

@ -75,11 +75,11 @@ export function SpotlightMedia(props: SpotlightMediaProps) {
autoPlay={true}
loop={true}
controls={true}
className="max-h-screen max-w-full min-w-[600px]"
className="max-h-screen max-w-full"
/>
);
} 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]);