Skip to content
Snippets Groups Projects
Footer.vue 556 B
Newer Older
<template>
  <v-footer class="pa-3 fixed-bottom bottom:0 width:100% left:0 right:0">
    <v-container class="footer">
      <v-row align="center">
        <v-col class="text-center" cols="12">
          <span class="subtitle-2 font-weight-light">Copyright © {{ new Date().getFullYear() }} <a class="text-white"
              href="https://www.subcom.tech/">SubCom</a></span>
        </v-col>
      </v-row>
    </v-container>
  </v-footer>
</template>
  
<style>
.footer {
  background-color: #03A9F4;
  color: whitesmoke;
  text-align: center;
}
</style>