Merge pull request #5023 from matrix-org/t3chguy/room-list/14644

Add min-width to floating Jitsi
pull/21833/head
Michael Telatynski 2020-07-20 15:24:26 +01:00 committed by GitHub
commit 0de6cada57
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -98,6 +98,7 @@ $AppsDrawerBodyHeight: 273px;
.mx_AppTile_mini .mx_AppTile_persistedWrapper { .mx_AppTile_mini .mx_AppTile_persistedWrapper {
height: 114px; height: 114px;
min-width: 300px;
} }
.mx_AppTileMenuBar { .mx_AppTileMenuBar {

View File

@ -104,7 +104,8 @@ export default class CallPreview extends React.Component<IProps, IState> {
if (showCall) { if (showCall) {
return ( return (
<CallView <CallView
className="mx_CallPreview" onClick={this.onCallViewClick} className="mx_CallPreview"
onClick={this.onCallViewClick}
ConferenceHandler={this.props.ConferenceHandler} ConferenceHandler={this.props.ConferenceHandler}
showHangup={true} showHangup={true}
/> />