• File: _labels.scss
  • Full Path: /home/chassiw/www/wp-content/themes/indutri/sass/mixins/mixins/_labels.scss
  • File size: 169 bytes
  • MIME-type: text/plain
  • Charset: utf-8
// Labels

@mixin label-variant($color) {
  background-color: $color;
  
  &[href] {
    &:hover,
    &:focus {
      background-color: darken($color, 10%);
    }
  }
}