Text Link text-link.scss Use the text-link module to create custom styling for text links. Use @extend to apply the text-link styling to links inside of dynamic content/WYSIWYG areas. Examples Basic This is an example of a text link that's getting its styling from the text-link class. Here's another text link that's getting its styling from the content module (via an @extend). Really handy for dynamic/WYSIWYG content! <div class="content"> <p>This is an example of a <a href="" class="text-link">text link</a> that's getting its styling from the <code>text-link</code> class.</p> <p>Here's another <a href="">text link</a> that's getting its styling from the <code>content</code> module (via an <code>@extend</code>). Really handy for dynamic/WYSIWYG content!</p> </div> Copy