_anchor.scss 197 B

1234567891011
  1. .anchorjs-link {
  2. font-weight: 400;
  3. color: rgba($link-color, .5);
  4. @include transition(color .15s ease-in-out);
  5. &:focus,
  6. &:hover {
  7. color: $link-color;
  8. text-decoration: none;
  9. }
  10. }