Utilities

Miscellaneous helper classes located in source/stylesheets/global/base/_utility.scss

.link-container

Allows a container to act as a trigger for a link, for example to make a whole card clickable.

<div class="link-container">
  <a href="https://example.com" class="link-container__link">link</a>
</div>

.unselectable

Stops a user being able to copy some text. To be used very rarely!

Used where we need a user to type specific characters in a text input to confirm they want to carry out a destructive action.

You should not be able to copy the text “copy some text” above.

<p>Stops a user being able to <span class="unselectable">copy some text</span>. To be used very rarely!</p>