aboutsummaryrefslogtreecommitdiffstats
path: root/src/styles/badge.scss
blob: 1f58b80891455fda04822298a7bba9dedcf67559 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
@import './config.scss';

.theme__dark .badge {
  background: $dark-theme-gray;
  border-radius: $theme-border-radius-small;
  color: $dark-theme-gray-lightest;

  &.badge--primary {
    background: $theme-brand-primary;
    color: $dark-theme-gray-lightest;
  }
}


.badge {
  background: $theme-gray-lighter;
  border-radius: $theme-border-radius;
  display: inline-block;
  font-size: 14px;
  padding: 5px 10px;
  letter-spacing: 0;

  &.badge--primary {
    background: $theme-brand-primary;
    color: #FFF;
  }

  &.badge--success {
    background: $theme-brand-success;
    color: #FFF;
  }

}