_links.scss 533 B

1234567891011121314151617181920212223242526272829
  1. /**
  2. * Links in navigation
  3. */
  4. .wp-block-navigation-link {
  5. a {
  6. :hover{
  7. text-decoration: underline;
  8. text-underline-offset: 0.4rem;
  9. }
  10. }
  11. }
  12. /**
  13. * Links in Content
  14. */
  15. .is-root-container, // Editor class hack.
  16. .wp-block-post-content {
  17. a:not(.wp-block-button__link):not([download]) {
  18. color: var(--wp--custom--color--primary);
  19. text-decoration-color: var(--wp--style--color--link);
  20. text-decoration-thickness: 1px;
  21. text-underline-offset: 0.2em;
  22. &:focus,
  23. &:hover {
  24. color: var(--wp--style--color--link);
  25. }
  26. }
  27. }