bitbadger.solutions-theme/bit-badger-solutions/components/PageFooter.vue

20 lines
395 B
Vue
Raw Normal View History

2020-08-09 01:08:44 +00:00
<template>
<footer>
A <strong><nuxt-link to="/">Bit Badger Solutions</nuxt-link></strong> original design
</footer>
</template>
<style scoped>
footer {
padding: 20px 15px 10px 15px;
text-align: right;
font-size: 1rem;
color: black;
clear: both;
background-image: linear-gradient(to bottom, #FFFAFA, lightgray);
}
footer a:link, footer a:visited {
color: black;
}
</style>