Files
tmhr/static/scss/argon-dashboard/mixins/_hover.scss
2024-02-23 10:30:02 +00:00

28 lines
275 B
SCSS
Executable File

@mixin hover() {
&:hover { @content; }
}
@mixin hover-focus() {
&:hover,
&:focus {
@content;
}
}
@mixin plain-hover-focus() {
&,
&:hover,
&:focus {
@content;
}
}
@mixin hover-focus-active() {
&:hover,
&:focus,
&:active {
@content;
}
}