Skip to content

Commit

Permalink
Hide & Disable video controls in full screen
Browse files Browse the repository at this point in the history
Fixes #18
  • Loading branch information
jmattheis committed Oct 27, 2020
1 parent d304472 commit 54530cc
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions ui/src/Room.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -362,6 +362,13 @@ const useStyles = makeStyles((theme: Theme) => ({
top: '50%',
left: '50%',
transform: 'translate(-50%,-50%)',

'&::-webkit-media-controls-start-playback-button': {
display: 'none!important',
},
'&::-webkit-media-controls': {
display: 'none!important',
},
},
smallVideo: {
minWidth: '100%',
Expand Down

0 comments on commit 54530cc

Please sign in to comment.