Skip to content

Commit

Permalink
Make footer links open in new tab
Browse files Browse the repository at this point in the history
  • Loading branch information
kylanhurt committed Oct 23, 2023
1 parent 8d2c0e4 commit a30d556
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Footer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default {

<div class="row footer-background justify-center text-center q-py-md">
<div v-for="footerLink in footerLinks" :key="footerLink.label" class="col-lg-1 col-md-2 col-sm-2 col-xs-4 q-pa-md">
<a class="no-dec" :href="footerLink.url">{{footerLink.label}}</a>
<a class="no-dec" :href="footerLink.url" target="_blank">{{footerLink.label}}</a>
</div>
</div>

Expand Down

0 comments on commit a30d556

Please sign in to comment.