Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Make margin and padding of mx_InviteDialog_other consistent #8063

Merged
merged 2 commits into from
Mar 16, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 16 additions & 2 deletions res/css/views/dialogs/_InviteDialog.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}
}
}

Expand Down