From 21f8130ebe601cc257e0ec0ec7ed581b3b8e2fc6 Mon Sep 17 00:00:00 2001 From: Travis Ralston Date: Fri, 17 Jan 2020 17:12:35 -0700 Subject: [PATCH] Prevent the invite dialog from jumping around when elements change Part of https://github.com/vector-im/riot-web/issues/11201 --- res/css/views/dialogs/_InviteDialog.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/res/css/views/dialogs/_InviteDialog.scss b/res/css/views/dialogs/_InviteDialog.scss index d0b53b7766..221ad7d48c 100644 --- a/res/css/views/dialogs/_InviteDialog.scss +++ b/res/css/views/dialogs/_InviteDialog.scss @@ -206,3 +206,8 @@ limitations under the License. margin-left: 4px; } } + +.mx_InviteDialog { + // Prevent the dialog from jumping around randomly when elements change. + height: 590px; +}