@charset "UTF-8";

/* -----------------------------------------------------------------

    Copyright  : 2021
    Created on : 2021-09-18, 3:11 PM
    Author     : Sébastien FOURNIER <contact@sebastien-fournier.com>

    MIXIN BADGE :
    =============

------------------------------------------------------------------ */

@mixin badge($suffix, $config) {
    
    .badge.badge-#{$suffix} {
        
        @if map-has-key($config, 'bg') {
            background-color: map-get($config, "bg");
            border-color: map-get($config, "bg");
        }
        
        @if map-has-key($config, 'color') {
            
            color: map-get($config, "color") !important;
            fill: map-get($config, "color") !important;
            
            * {
                color: map-get($config, "color") !important;
                fill: map-get($config, "color") !important;
            }
        }
    }
}