mirror of
https://github.com/facebook/react.git
synced 2026-02-27 03:07:57 +00:00
18 lines
475 B
CSS
18 lines
475 B
CSS
.Badge {
|
|
display: inline-block;
|
|
background-color: var(--color-component-badge-background);
|
|
color: var(--color-text);
|
|
padding: 0.125rem 0.25rem;
|
|
line-height: normal;
|
|
border-radius: 0.125rem;
|
|
margin-right: 0.25rem;
|
|
font-family: var(--font-family-monospace);
|
|
font-size: var(--font-size-monospace-small);
|
|
}
|
|
|
|
.ExtraLabel {
|
|
font-family: var(--font-family-monospace);
|
|
font-size: var(--font-size-monospace-small);
|
|
color: var(--color-component-badge-count);
|
|
}
|