mdb-ui-kit/scss/mixins/_hover.scss
JP-Ellis f729cf1fa1
Fix base-level &.
Fix is according to sass/sass#1873.

Signed-off-by: JP-Ellis <josh@jpellis.me>
2016-03-28 23:22:00 +11:00

10 lines
193 B
SCSS

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