Copyright
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:
© 2023 by Acme Inc.
<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">© 2023 by Acme Inc.</div>
</div>
Vertical layout
You can display the copyright information in the vertical layout as well:
© 2023 by Acme Inc.
<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">© 2023 by Acme Inc.</div>
</div>
CSS
Sass variables
$copyright-horizontal-breakpoint: md;