Skip to content
Snippets Groups Projects
Commit 681c33d1 authored by Lynx Kotoura's avatar Lynx Kotoura Committed by Eugen Rochko
Browse files

Quit overwriting style of extended-video-player (#4237)

Though size of extended-video-player is already fixed to 80vw*80vh in components.scss, player size was also set to original video size in extended_video_player.js. Video size is fixed to 80vw*80vh, so video player's size must also be fixed to 80vw*80vh.
parent 7f35947d
No related branches found
No related tags found
No related merge requests found
......@@ -32,7 +32,7 @@ export default class ExtendedVideoPlayer extends React.PureComponent {
render () {
return (
<div className='extended-video-player' style={{ width: this.props.width, height: this.props.height }}>
<div className='extended-video-player'>
<video
ref={this.setRef}
src={this.props.src}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment