@use '../helpers' as *; // Links within content must be visually underlined // @link https://make.wordpress.org/themes/handbook/review/accessibility/required/#content-links @mixin link() { color: var(--color-link-text); // Create your own default content link styles here // for pages and articles text-decoration: underline; text-decoration-color: var(--color-link-text); text-underline-offset: 0.375rem; transition: all 150ms; &:hover, &:focus { color: var(--color-link-text-hover); text-decoration-color: var(--color-link-text-hover); } }