fix(desktop): improve preview player style (#4238)

* fix(desktop): improve preview player style

* update
This commit is contained in:
Konv Suu 2025-08-04 16:15:13 +08:00 committed by GitHub
parent ae093ffab8
commit e0ac4dd9de
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -282,7 +282,7 @@ const MediaImpl: FC<MediaProps> = ({
className={cn(
"center",
!(finalWidth || finalHeight) && "size-full",
"cursor-card relative bg-stone-100 object-cover",
"cursor-card relative object-cover",
mediaContainerClassName,
)}
onClick={handleClick}
@ -520,7 +520,7 @@ const VideoPreview: FC<{
poster={previewImageUrl}
ref={setVideoRef}
muted
className="relative size-full object-cover"
className="not-prose relative size-full object-cover"
/>
)}