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

10 lines
176 B
SCSS

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