Merge pull request #2888 from matrix-org/dbkr/dbkr/settings_dialog_width_2

Move SettingsDialog width override to fixedWidth
This commit is contained in:
David Baker 2019-04-08 14:28:29 +01:00 committed by GitHub
commit de4788a3d5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -16,8 +16,6 @@ limitations under the License.
.mx_SettingsDialog {
.mx_Dialog {
max-width: 1000px;
width: 90%;
height: 80%;
border-radius: 4px;
padding-top: 0;
@ -43,8 +41,10 @@ limitations under the License.
margin-top: 16px;
margin-bottom: 24px;
}
.mx_Dialog_fixedWidth {
width: 100%;
max-width: 1000px;
width: 90vw;
}
}
}