2022-09-26 21:29:38 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2022-09-26 21:29:38 +08:00
|
|
|
Copyright 2022 The Matrix.org Foundation C.I.C.
|
|
|
|
|
2024-09-09 21:57:16 +08:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2022-09-26 21:29:38 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
.mx_LiveBadge {
|
|
|
|
align-items: center;
|
|
|
|
background-color: $alert;
|
|
|
|
border-radius: 2px;
|
|
|
|
color: $live-badge-color;
|
2022-12-15 19:43:01 +08:00
|
|
|
display: inline-flex;
|
2022-09-26 21:29:38 +08:00
|
|
|
font-size: $font-12px;
|
2023-06-29 18:30:25 +08:00
|
|
|
font-weight: var(--cpd-font-weight-semibold);
|
2022-09-26 21:29:38 +08:00
|
|
|
gap: $spacing-4;
|
|
|
|
padding: 2px 4px;
|
|
|
|
}
|
2022-11-16 23:13:59 +08:00
|
|
|
|
|
|
|
.mx_LiveBadge--grey {
|
|
|
|
background-color: $quaternary-content;
|
|
|
|
}
|