2021-03-03 20:09:58 +00:00
|
|
|
// Copyright 2021 Signal Messenger, LLC
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
.module-ContactPills {
|
2021-03-15 18:50:22 +00:00
|
|
|
@include smooth-scroll;
|
|
|
|
|
2021-03-03 20:09:58 +00:00
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
max-height: 88px;
|
|
|
|
overflow-x: hidden;
|
|
|
|
overflow-y: scroll;
|
|
|
|
padding-left: 12px;
|
|
|
|
|
|
|
|
.module-ContactPill {
|
|
|
|
margin: 4px 6px;
|
|
|
|
max-width: calc(
|
|
|
|
100% - 15px
|
|
|
|
); // 6px for the right margin and 9px for the scrollbar
|
|
|
|
}
|
|
|
|
}
|