2022-09-26 15:29:38 +02:00
|
|
|
/*
|
|
|
|
Copyright 2022 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
.mx_LiveBadge {
|
|
|
|
align-items: center;
|
|
|
|
background-color: $alert;
|
|
|
|
border-radius: 2px;
|
|
|
|
color: $live-badge-color;
|
2022-12-15 12:43:01 +01:00
|
|
|
display: inline-flex;
|
2022-09-26 15:29:38 +02:00
|
|
|
font-size: $font-12px;
|
2023-06-29 12:30:25 +02:00
|
|
|
font-weight: var(--cpd-font-weight-semibold);
|
2022-09-26 15:29:38 +02:00
|
|
|
gap: $spacing-4;
|
|
|
|
padding: 2px 4px;
|
|
|
|
}
|
2022-11-16 16:13:59 +01:00
|
|
|
|
|
|
|
.mx_LiveBadge--grey {
|
|
|
|
background-color: $quaternary-content;
|
|
|
|
}
|