Skip to content

Commit

Permalink
fix: video player style (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
sirily11 authored Oct 18, 2022
1 parent 13a1d2d commit d8ca54a
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion apps/video-trading/pages/watch/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,14 @@ export default function Index() {
{/* video */}
<Box>
{video.data && (
<Player poster={video.data.cover} src={video.data.video} />
<Player
fluid={false}
poster={video.data.cover}
src={video.data.video}
height={500}
//@ts-ignore
width={"100%"}
/>
)}
</Box>
<Typography variant="h6" fontWeight={600}>
Expand Down

2 comments on commit d8ca54a

@vercel
Copy link

@vercel vercel bot commented on d8ca54a Oct 18, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on d8ca54a Oct 18, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

codeblock – ./apps/codeblock

codeblock.vercel.app
codeblock-git-main-etherdata-blockchain.vercel.app
codeblock-etherdata-blockchain.vercel.app

Please sign in to comment.