@import "../../styles/font.module";
@import "../../styles/color.module";

.link {
  color: $blue100;
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  font-family: $fontPrimary;
  display: inline-block;
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  text-decoration: none;
  cursor: pointer;
  outline: none;

  &:after {
    content: "";
    height: 2px;
    background-color: $blue100;
    display: block;
    margin-top: 2px;
  }

  // Disabled

  &:disabled, &[disabled] {
    color: $greyLinkDisabled;

    &:after {
      background-color: transparent;
    }
  }

  // Hover

  &:hover {
    &:after {
      background-color: transparent;
    }
  }
}