1
Fork 0
userstyles/source/tildes-baukula/_mixins.scss

18 lines
331 B
SCSS

// Mixin to easily color standard and hover states
@mixin color-hover($standard, $hover) {
color: $standard;
&:hover {
color: $hover;
}
}
// The same as color-hover but for the background-color
@mixin background-hover($standard, $hover) {
background-color: $standard;
&:hover {
background-color: $hover;
}
}