aboutsummaryrefslogtreecommitdiffstats
path: root/src/styles/badge.scss
blob: 728200d03335874cf11b46eb9f01f0c989d5f8c0 (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
34
35
36
@import './config.scss';

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

  &.badge--primary,
  &.badge--premium {
    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,
  &.badge--premium {
    background: $theme-brand-primary;
    color: #FFF;
  }

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

}