mirror of
https://github.com/mdbootstrap/mdb-ui-kit.git
synced 2024-11-13 05:07:01 +03:00
10 lines
177 B
SCSS
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;
|
|
}
|
|
}
|