Skip to content

Commit

Permalink
Fixed #63: footer links _blank and cursor
Browse files Browse the repository at this point in the history
  • Loading branch information
rgaudin committed May 7, 2024
1 parent dbaee44 commit 6680f54
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions frontend/src/components/FooterComponent.vue
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
<template>
<footer class="footer d-flex justify-content-between mt-auto px-3 py-1 text-muted border-top">
<div class="">
Powered by <a href="https://github.com/openzim/nautilus" class="link-secondary">Nautilus</a> &
<a href="https://kiwix.org" class="link-secondary">Kiwix</a>
Powered by <a href="https://github.com/openzim/nautilus" target="_blank" class="link-secondary">Nautilus</a> &
<a href="https://kiwix.org" target="_blank" class="link-secondary">Kiwix</a>
</div>
<div class="">Copyright {{ new Date().getFullYear() }}</div>
</footer>
</template>

<style type="text/css">
.link-secondary:hover {
cursor: pointer;
}
</style>

0 comments on commit 6680f54

Please sign in to comment.