Huesos
Style
Guide

Repositoire

GitHub

Preview

Kill Links

Completely disables the visual appearance of links within a container. It defaults to primary text color.

Use carefully and scope only to the very elements you want to style. Unwanted overrides are easy to get.

How’s this different from the mixin? This class is helper devised to quickly disable all links within a container. It is applied at a container-level and will apply to every link, while the mixin is applied individually.

Example

<section class="kill-link">
    <p>The <a href="#">links</a> within this text are <a href="#">completely equal to normal text</a></p>
</section>

Assets

  • Filesystem Path: src/components/helpers/kill-links/_kill-links.scss
  • Size: 46 Bytes
  • Content:
    .kill-link {
    	a {
    		@include kill-link();
    	}
    }