_links.scss 319 B

12345678910111213141516171819202122
  1. /**
  2. * Links in navigation
  3. */
  4. .wp-block-navigation-link {
  5. a {
  6. text-underline-offset: 0.4rem;
  7. :hover{
  8. text-decoration: underline;
  9. }
  10. }
  11. }
  12. /**
  13. * Links in Content
  14. */
  15. .is-root-container, // Editor class hack.
  16. .wp-block-post-content {
  17. a {
  18. text-decoration-thickness: 1px;
  19. text-underline-offset: 0.2em;
  20. }
  21. }