672 B28 lines
Blame
1/**
2 * Copyright (c) Meta Platforms, Inc. and affiliates.
3 *
4 * This source code is licensed under the MIT license found in the
5 * LICENSE file in the root directory of this source tree.
6 */
7
8.inline-badge {
9 border-radius: 14px;
10 padding: 3px var(--pad);
11 display: inline-block;
12 font-size: 80%;
13 font-weight: bold;
14 display: inline-flex;
15 align-items: center;
16 gap: var(--halfpad);
17}
18
19.inline-badge.badge-secondary {
20 background-color: var(--button-secondary-hover-background);
21 color: var(--button-secondary-foreground);
22}
23
24.inline-badge.badge-primary {
25 background-color: var(--button-primary-hover-background);
26 color: var(--button-primary-foreground);
27}
28