phuong09021998
5/7/2020 - 8:12 AM

Mixin

// Set background & text color
 
@mixin set-background($color) {
    background-color: $color;
    color: set-text-color($color)
}
 
@include set-background($primary-color);