mdb-ui-kit/scss/mixins/_hover.scss
FezVrasta 750ba9b897 The big leap 🚀💨
2017-08-11 16:59:31 +02:00

10 lines
177 B
SCSS

@mixin bmd-hover-focus-active {
// add the .active to the whole mix of hover-focus-active
&.active {
@content;
}
@include hover-focus-active() {
@content;
}
}