36 lines
680 B
SCSS
36 lines
680 B
SCSS
// Copyright 2022 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
.CallingAudioIndicator {
|
|
$size: 20px;
|
|
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: $size;
|
|
min-width: $size;
|
|
width: $size;
|
|
z-index: $z-index-base;
|
|
border-radius: calc($size / 2);
|
|
|
|
&--with-content {
|
|
background: $color-black-alpha-30;
|
|
}
|
|
|
|
&__content {
|
|
$size: 14px;
|
|
width: $size;
|
|
height: $size;
|
|
/* Center Lottie animation */
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
&--muted {
|
|
@include color-svg(
|
|
'../images/icons/v2/mic-off-solid-28.svg',
|
|
$color-white
|
|
);
|
|
}
|
|
}
|
|
}
|