Skip to content

Commit

Permalink
Merge pull request #54 from kilbergr/rek-rearrange-footer
Browse files Browse the repository at this point in the history
Rearranges footer components for a more balanced look
  • Loading branch information
kilbergr authored Feb 7, 2024
2 parents 71ffbd0 + d73aa64 commit 5b06a48
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/components/cap-footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,19 +104,19 @@ export class CapFooter extends LitElement {
</a>
</div>
<ul class="footer__list">
${legalLinks.map(
<ul class="footer__list footer__navLinks">
${navLinks.map(
(link) =>
html`<li>
<a class="footer__textLink" href="${link.path}">${link.name}</a>
</li>`,
)}
</ul>
<ul class="footer__list footer__navLinks">
${navLinks.map(
<ul class="footer__list">
${legalLinks.map(
(link) =>
html` <li>
html`<li>
<a class="footer__textLink" href="${link.path}">${link.name}</a>
</li>`,
)}
Expand Down

0 comments on commit 5b06a48

Please sign in to comment.