12345678910111213141516171819202122 |
- /**
- * Links in navigation
- */
- .wp-block-navigation-link {
- a {
- text-underline-offset: 0.4rem;
- :hover{
- text-decoration: underline;
- }
- }
- }
- /**
- * Links in Content
- */
- .is-root-container, // Editor class hack.
- .wp-block-post-content {
- a {
- text-decoration-thickness: 1px;
- text-underline-offset: 0.2em;
- }
- }
|