_link.legacy.scss 271 B

12345678910111213141516
  1. // makes a link look like regular text
  2. .nolink {
  3. color: theme('colors.text-context');
  4. &:hover {
  5. color: theme('colors.text-link-hover');
  6. }
  7. @media (forced-colors: active) {
  8. color: GrayText;
  9. }
  10. }
  11. a.underlined {
  12. border-bottom: 1px solid currentColor;
  13. }