From c87c4ef5a40939bcb58875a487014c8237f7d2bf Mon Sep 17 00:00:00 2001 From: David Baker Date: Mon, 8 Apr 2019 11:56:08 +0100 Subject: [PATCH] Fix settings dialog layout The close 'x' was ending up off the right hand side which made everything else overlap with the left panel, depending on how wide your window was. This isn't the end of the dialog problems but it will at least stop settings from being mangled on develop. --- res/css/views/dialogs/_SettingsDialog.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/res/css/views/dialogs/_SettingsDialog.scss b/res/css/views/dialogs/_SettingsDialog.scss index 840ddb0a09..16c282ce58 100644 --- a/res/css/views/dialogs/_SettingsDialog.scss +++ b/res/css/views/dialogs/_SettingsDialog.scss @@ -44,7 +44,7 @@ limitations under the License. margin-bottom: 24px; } .mx_Dialog_fixedWidth { - width: 90vw; + width: 100%; } } }