/*
 * @Author: 焦质晔
 * @Date: 2021-02-10 12:45:22
 * @Last Modified by: 焦质晔
 * @Last Modified time: 2024-11-05 18:46:35
 */
@use '../themes' as *;

@mixin operation-unit() {
  color: $link-color;
  text-decoration: none;
  outline: none;
  cursor: pointer;
  transition: color 0.3s;

  &:focus,
  &:hover {
    color: $link-hover-color;
  }

  &:active {
    color: $link-active-color;
  }
}
