Scss #hover usage help

What is the easy way to use .active and #hover in scss script?

[image]

If you mean for links something like this

$a-links: 'a, a:active, a:hover, a:visited';
$a-links-hover: 'a:active, a:hover';
 
#{$a-links} {
  color: red;
  text-decoration: none;
}
#{$a-links-hover} {
  color: blue;
}
3 Likes