From acdcf6639e4910e34638e51d9506409bced01cc2 Mon Sep 17 00:00:00 2001 From: David Baker Date: Mon, 8 Apr 2019 19:11:04 +0100 Subject: [PATCH] Put width / height first in css --- res/css/views/dialogs/_SettingsDialog.scss | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/res/css/views/dialogs/_SettingsDialog.scss b/res/css/views/dialogs/_SettingsDialog.scss index ed1738d6b4..ec813a1a07 100644 --- a/res/css/views/dialogs/_SettingsDialog.scss +++ b/res/css/views/dialogs/_SettingsDialog.scss @@ -16,6 +16,11 @@ limitations under the License. // Not actually a component but things shared by settings components .mx_UserSettingsDialog, .mx_RoomSettingsDialog { + width: 90vw; + max-width: 1000px; + // set the height too since tabbed view scrolls itself. + height: 80vh; + .mx_TabbedView { top: 65px; } @@ -34,9 +39,4 @@ limitations under the License. text-align: center; margin-bottom: 24px; } - - max-width: 1000px; - width: 90vw; - // set the height too since tabbed view scrolls itself. - height: 80vh; }