24 lines
420 B
SCSS
24 lines
420 B
SCSS
|
// Copyright 2022 Signal Messenger, LLC
|
||
|
// SPDX-License-Identifier: AGPL-3.0-only
|
||
|
|
||
|
.AddUserToAnotherGroupModal {
|
||
|
&__main-body {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
min-height: 300px;
|
||
|
}
|
||
|
|
||
|
&__list-wrapper {
|
||
|
flex-grow: 1;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.AddUserToAnotherGroupModal .module-conversation-list {
|
||
|
&__item,
|
||
|
&__item--contact-or-conversation {
|
||
|
height: 52px;
|
||
|
padding: 0 6px;
|
||
|
}
|
||
|
}
|