mdb-ui-kit/scss/mixins/_hover.scss

10 lines
177 B
SCSS
Raw Normal View History

@mixin bmd-hover-focus-active {
// add the .active to the whole mix of hover-focus-active
&.active {
2017-08-11 17:59:31 +03:00
@content;
}
@include hover-focus-active() {
@content;
}
}