.ads-Link {
  @apply text-blue-400
    duration-100
    text-left
    inline
    cursor-pointer
    underline;
}

.ads-Link:hover,
.ads-Link:active,
.ads-Link:focus {
  @apply text-blue-500;
}

.ads-Link:focus {
  @apply outline-none
    shadow-focus;
}

.ads-Link.isDisabled {
  @apply text-gray-500
    no-underline
    pointer-events-none;
}

/* STATUS VARIANTS */
.ads-Link--danger {
  @apply text-red-500;
}

.ads-Link--danger:hover,
.ads-Link--danger:active,
.ads-Link--danger:focus {
  @apply text-failure;
}

.ads-Link--warning,
.ads-Link--default {
  @apply text-gray-700;
}

.ads-Link--warning:hover,
.ads-Link--default:hover,
.ads-Link--warning:active,
.ads-Link--default:active,
.ads-Link--warning:focus,
.ads-Link--default:focus {
  @apply text-gray-600;
}

.ads-Link--success {
  @apply text-green-500;
}

.ads-Link--success:hover,
.ads-Link--success:active,
.ads-Link--success:focus {
  @apply text-success;
}
