1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-13 08:02:38 +03:00

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

Add min-width to floating Jitsi
This commit is contained in:
Michael Telatynski
2020-07-20 15:24:26 +01:00
committed by GitHub
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}
/> />