Skip to main content Skip to docs navigation

The component allows to display the copyright information with links in various layouts.

Examples

Horizontal layout

This section provides an example of how to add copyright links and text information:

html
<div class="copyright copyright-horizontal">
  <ul class="copyright-links">
    <li><a href="#">Privacy policy</a></li>
    <li><a href="#">Imprint</a></li>
    <li><a href="#">GTC</a></li>
  </ul>

  <div class="copyright-text">&copy; 2023 by Acme Inc.</div>
</div>

Vertical layout

You can display the copyright information in the vertical layout as well:

html
<div class="copyright copyright-vertical">
  <ul class="copyright-links">
    <li><a href="#">Privacy policy</a></li>
    <li><a href="#">Imprint</a></li>
    <li><a href="#">GTC</a></li>
  </ul>

  <div class="copyright-text">&copy; 2023 by Acme Inc.</div>
</div>

CSS

Sass variables

$copyright-horizontal-breakpoint:   md;