14 lines
411 B
SCSS
14 lines
411 B
SCSS
.badge.badge-pill:not(.gl-badge) {
|
|
font-weight: $gl-font-weight-normal;
|
|
background-color: $badge-bg;
|
|
color: $gray-700;
|
|
vertical-align: baseline;
|
|
|
|
// Do not use this!
|
|
// This is a temporary workaround until the new GlBadge component
|
|
// is available: https://gitlab.com/gitlab-org/gitlab-ui/-/issues/481
|
|
&.badge-pill-success {
|
|
background-color: rgba($green-500, 0.2);
|
|
color: $green;
|
|
}
|
|
}
|