// ----------------------------------------------------------------------

  // Hover and Focus

 // ----------------------------------------------------------------------

 // example @include hoverFocus('text-decoration', 'none');

@mixin hoverFocus($property, $value) {
  &:hover, &:focus {
    #{$property}: $value;
  }
}
