Skip to content

Commit

Permalink
Minor bug fixes (mattermost#4172)
Browse files Browse the repository at this point in the history
  • Loading branch information
asaadmahmood authored and enahum committed Oct 6, 2016
1 parent ba3c6d9 commit d67b2b4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion webapp/components/admin_console/license_settings.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ class LicenseSettings extends React.Component {
render() {
var serverError = '';
if (this.state.serverError) {
serverError = <div className='form-group has-error'><label className='control-label'>{this.state.serverError}</label></div>;
serverError = <div className='col-sm-12'><div className='form-group has-error'><label className='control-label'>{this.state.serverError}</label></div></div>;
}

var btnClass = 'btn';
Expand Down
2 changes: 1 addition & 1 deletion webapp/sass/components/_webrtc.scss
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@

video {
height: 100%;
width: auto;
width: 100%;
}
}
}
Expand Down
4 changes: 4 additions & 0 deletions webapp/sass/responsive/_mobile.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
@charset 'UTF-8';

@media screen and (max-width: 768px) {
.filtered-user-list {
max-height: 65vh !important;
}

.app__body {
.edit-modal-body {

Expand Down

0 comments on commit d67b2b4

Please sign in to comment.