7 lines
66 B
SCSS
7 lines
66 B
SCSS
@mixin hover-focus() {
|
|
&:hover,
|
|
&:focus {
|
|
@content;
|
|
}
|
|
}
|