addons/isl/src/InlineBadge.cssblame
View source
b69ab311/**
b69ab312 * Copyright (c) Meta Platforms, Inc. and affiliates.
b69ab313 *
b69ab314 * This source code is licensed under the MIT license found in the
b69ab315 * LICENSE file in the root directory of this source tree.
b69ab316 */
b69ab317
b69ab318.inline-badge {
b69ab319 border-radius: 14px;
b69ab3110 padding: 3px var(--pad);
b69ab3111 display: inline-block;
b69ab3112 font-size: 80%;
b69ab3113 font-weight: bold;
b69ab3114 display: inline-flex;
b69ab3115 align-items: center;
b69ab3116 gap: var(--halfpad);
b69ab3117}
b69ab3118
b69ab3119.inline-badge.badge-secondary {
b69ab3120 background-color: var(--button-secondary-hover-background);
b69ab3121 color: var(--button-secondary-foreground);
b69ab3122}
b69ab3123
b69ab3124.inline-badge.badge-primary {
b69ab3125 background-color: var(--button-primary-hover-background);
b69ab3126 color: var(--button-primary-foreground);
b69ab3127}