IbtFooter.vue 531 B

12345678910111213141516171819202122232425262728293031
  1. <template>
  2. <md-toolbar id="footer" class="md-dense">
  3. <span><a href="https://github.com/raspibo/ibt2">ibt2</a> &copy; <a href="http://www.raspibo.org/">RaspiBO</a></span>
  4. </md-toolbar>
  5. </template>
  6. <script>
  7. export default {}
  8. </script>
  9. <style>
  10. #footer {
  11. text-align: center;
  12. color: white;
  13. display: block;
  14. vertical-align: middle;
  15. min-height: 16px;
  16. left: 0px;
  17. right: 0px;
  18. bottom: 0px;
  19. position: absolute;
  20. background-color: #b3e5fc;
  21. }
  22. #footer a {
  23. color: white;
  24. }
  25. </style>