///Theme for component action.
///
///@author Federico Gambardella<fedega86@libero.it>
///@param $section
///@param $map
@mixin component-action($section, $map) {
    @if($section == 'action' ) {
        .#{$section} {
            border-right: map-get($map, border);
        }

        .action-container {
            color: map-get($map, color );
        }
    }
}