mirror of
https://github.com/primer/css.git
synced 2024-11-29 06:02:33 +03:00
22 lines
444 B
SCSS
22 lines
444 B
SCSS
// Counters are rounded-corner badges for numbers
|
|
.Counter {
|
|
display: inline-block;
|
|
padding: 2px 5px;
|
|
font-size: $font-size-small;
|
|
font-weight: $font-weight-bold;
|
|
line-height: $lh-condensed-ultra;
|
|
color: $gray-600;
|
|
background-color: rgba($black, 0.08);
|
|
border-radius: 20px;
|
|
}
|
|
|
|
.Counter--gray-light {
|
|
color: $text-gray-dark;
|
|
background-color: $black-fade-15;
|
|
}
|
|
|
|
.Counter--gray {
|
|
color: $white;
|
|
background-color: $gray;
|
|
}
|