Buttons, Baby!
scss-mixin
@mixin hover-active() {
@media (hover: hover) {
&:not(:disabled):hover {
@content;
}
}
&:not(:disabled):active {
@content;
}
}
Im Einsatz
button{
background-color: cyan;
@include hover-active {
background-color: green;
}
&:focus-visible {
outline: 2px solid green;
outline-offset: 2px;
}
}