// Copyright (c) 2016-2019 VMware, Inc. All Rights Reserved.
// This software is released under MIT license.
// The full license information can be found in LICENSE in the root directory of this project.

@include exports('links.clarity') {
  // only imported for demos. gives a static view of links in various states.
  a.link-normal:link {
    color: $clr-link-color;
    text-decoration: none;
  }

  a.link-hovered:link {
    color: $clr-link-hover-color;
    text-decoration: underline;
  }

  a.link-clicked:link {
    color: $clr-link-active-color;
    text-decoration: underline;
  }

  a.link-visited:link {
    color: $clr-link-visited-color;
    text-decoration: none;
  }
}
