Let the player take 90% of the screen by default

This commit is contained in:
Grégoire Delattre 2017-06-05 15:29:25 +02:00
parent d181d53f4c
commit e9138ab303
2 changed files with 5 additions and 1 deletions

View File

@ -47,7 +47,7 @@ export default class DownloadButton extends React.PureComponent {
</MenuItem>
</Dropdown.Menu>
<Modal show={this.state.showModal} onHide={this.hideModal}>
<Modal show={this.state.showModal} onHide={this.hideModal} dialogClassName="player-modal">
<Modal.Header closeButton>
<Modal.Title>
<i className="fa fa-globe"></i>

View File

@ -65,3 +65,7 @@ div.sweet-alert > h2 {
display: inherit;
}
}
.player-modal {
width: 90%;
}