signal-desktop/stylesheets/components/ContactPills.scss
2024-11-15 15:09:31 -08:00

25 lines
503 B
SCSS

// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
@use '../mixins';
.module-ContactPills {
@include mixins.smooth-scroll;
& {
display: flex;
flex-wrap: wrap;
margin-bottom: 10px;
max-height: 88px;
overflow-x: hidden;
overflow-y: scroll;
padding-block: 4px;
padding-inline: 16px;
gap: 8px 12px;
}
.module-ContactPill {
max-width: calc(
100% - 15px
); // 6px for the right margin and 9px for the scrollbar
}
}