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.
signup-info-prompt
Lynx Kotoura 2017-07-18 02:05:29 +09:00 committed by Eugen Rochko
parent 7f35947d8e
commit 681c33d1f4
1 changed files with 1 additions and 1 deletions

View File

@ -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}