From 6ee54b6480f6154f460d529270ed475cef911237 Mon Sep 17 00:00:00 2001 From: Suguru Hirahara Date: Wed, 16 Mar 2022 12:15:02 +0000 Subject: [PATCH] Make margin and padding of mx_InviteDialog_other consistent (#8063) --- res/css/views/dialogs/_InviteDialog.scss | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/res/css/views/dialogs/_InviteDialog.scss b/res/css/views/dialogs/_InviteDialog.scss index 546327ff40..8433dbc9b4 100644 --- a/res/css/views/dialogs/_InviteDialog.scss +++ b/res/css/views/dialogs/_InviteDialog.scss @@ -275,8 +275,22 @@ limitations under the License. height: 600px; padding-left: 20px; // the design wants some padding on the left - .mx_InviteDialog_userSections { - height: calc(100% - 115px); // mx_InviteDialog's height minus some for the upper and lower elements + .mx_InviteDialog_addressBar { + margin-right: 0; + } + + .mx_InviteDialog_content { + padding-right: 20px; // same padding on the right + + .mx_InviteDialog_userSections { + height: calc(100% - 115px); // mx_InviteDialog's height minus some for the upper and lower elements + padding-right: 0; + + .mx_InviteDialog_section { + padding-bottom: 0; + margin-top: 12px; + } + } } }