aboutsummaryrefslogtreecommitdiffstats
path: root/src/styles/badge.scss
diff options
context:
space:
mode:
Diffstat (limited to 'src/styles/badge.scss')
-rw-r--r--src/styles/badge.scss25
1 files changed, 22 insertions, 3 deletions
diff --git a/src/styles/badge.scss b/src/styles/badge.scss
index d7dfaf783..f9fac039a 100644
--- a/src/styles/badge.scss
+++ b/src/styles/badge.scss
@@ -1,15 +1,34 @@
1@import './config.scss'; 1@import './config.scss';
2 2
3.theme__dark .badge {
4 background: $dark-theme-gray;
5 border-radius: $theme-border-radius-small;
6 color: $dark-theme-gray-lightest;
7
8 &.badge--primary,
9 &.badge--premium {
10 background: $theme-brand-primary;
11 color: $dark-theme-gray-smoke;
12 }
13}
14
15
3.badge { 16.badge {
4 font-size: 14px; 17 background: $theme-gray-lighter;
18 border-radius: $theme-border-radius;
5 display: inline-block; 19 display: inline-block;
20 font-size: 14px;
6 padding: 5px 10px; 21 padding: 5px 10px;
7 border-radius: $theme-border-radius;
8 background: $theme-gray-lighter;
9 22
10 &.badge--primary, 23 &.badge--primary,
11 &.badge--premium { 24 &.badge--premium {
12 background: $theme-brand-primary; 25 background: $theme-brand-primary;
13 color: #FFF; 26 color: #FFF;
14 } 27 }
28
29 &.badge--success {
30 background: $theme-brand-success;
31 color: #FFF;
32 }
33
15} 34}