summaryrefslogtreecommitdiff
path: root/templates/assets/bootstrap-material-design/scss/mixins/_hover.scss
blob: ae92b2ab5bbd3b6111e3c292272d9fcf998d316f (plain)
1
2
3
4
5
6
7
8
9
@mixin bmd-hover-focus-active {
  // add the .active to the whole mix of hover-focus-active
  &.active {
    @content
  }
  @include hover-focus-active() {
    @content;
  }
}