Archived
1
0
Fork 0

app/assets/sass/components/_badge.scss: convert to new bootstrap variables.

This commit is contained in:
Henrik Hautakoski 2022-08-08 23:50:32 +02:00
parent 4b750f0f37
commit 513517032f

View file

@ -16,7 +16,7 @@
&-default { &-default {
color: white; color: white;
background-color: $gray; background-color: $gray-400;
} }
&-primary { &-primary {
@ -26,21 +26,21 @@
&-info { &-info {
color: white; color: white;
background-color: $brand-info; background-color: $info;
} }
&-success { &-success {
color: white; color: white;
background-color: $brand-success; background-color: $success;
} }
&-warning { &-warning {
color: black; color: black;
background-color: $brand-warning; background-color: $warning;
} }
&-danger { &-danger {
color: white; color: white;
background-color: $brand-danger; background-color: $danger;
} }
} }