Chamilo is a learning management system focused on ease of use and accessibility
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
chamilo-lms/assets/css/scss/components/_badges.scss

31 lines
397 B

.badge {
@apply box-decoration-clone font-semibold py-1 px-4 rounded-full text-white inline-block;
&--default {
@apply bg-gray-50;
}
&--error {
@apply bg-error;
}
&--success {
@apply bg-success;
}
&--warning {
@apply bg-warning;
}
&--info {
@apply bg-info;
}
&--primary {
@apply bg-primary;
}
&--secondary {
@apply bg-secondary;
}
}