summaryrefslogtreecommitdiff
path: root/src/assets/styles/bmc/_sila/_badge.scss
blob: 0b88b499b2ec2a68cd536f6350aec7f8d57f82a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
.badge-pill {
  // Need to explicitly set border-radius
  // for pill variant because global $enable-rounded
  // Bootstrap setting removes rounded pill style
  border-radius: 10rem;
  fill: currentColor;
  font-weight: 400;
  line-height: 1.5;
  display: inline-flex;
  .close {
    font-size: 1em;
    margin-left: $spacer/2;
    font-weight: inherit;
    color: inherit;
  }
}

.badge-primary {
  background-color: theme-color-light("info");
  color: theme-color("info");
}