2025-02-07 08:40:30 -06:00
|
|
|
// Copyright 2025 Signal Messenger, LLC
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
@use '../mixins';
|
|
|
|
@use '../variables';
|
|
|
|
|
|
|
|
.SignalConversationMuteToggle {
|
2025-05-04 19:57:44 -07:00
|
|
|
height: variables.$header-height;
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
font-size: 14px;
|
|
|
|
color: variables.$color-ultramarine-light;
|
|
|
|
|
2025-02-07 08:40:30 -06:00
|
|
|
@include mixins.light-theme() {
|
|
|
|
background-color: variables.$color-white;
|
|
|
|
border-top: 0.5px solid variables.$color-black-alpha-16;
|
|
|
|
}
|
|
|
|
|
|
|
|
@include mixins.dark-theme() {
|
|
|
|
background-color: variables.$color-gray-95;
|
|
|
|
border-top: 0.5px solid variables.$color-gray-65;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__text {
|
|
|
|
@include mixins.button-reset;
|
|
|
|
}
|
|
|
|
}
|