aboutsummaryrefslogtreecommitdiffstats
path: root/src/styles/badge.scss
blob: 18a653118cf2cf691e95153eed9e5b705d230536 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
@import './config.scss';

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

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

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

}