31 lines
531 B
Vue
31 lines
531 B
Vue
<template>
|
|
<md-toolbar id="footer" class="md-dense">
|
|
<span><a href="https://github.com/raspibo/ibt2">ibt2</a> © <a href="http://www.raspibo.org/">RaspiBO</a></span>
|
|
</md-toolbar>
|
|
</template>
|
|
<script>
|
|
|
|
export default {}
|
|
|
|
</script>
|
|
|
|
<style>
|
|
|
|
#footer {
|
|
text-align: center;
|
|
color: white;
|
|
display: block;
|
|
vertical-align: middle;
|
|
min-height: 16px;
|
|
left: 0px;
|
|
right: 0px;
|
|
bottom: 0px;
|
|
position: absolute;
|
|
background-color: #b3e5fc;
|
|
}
|
|
|
|
#footer a {
|
|
color: white;
|
|
}
|
|
|
|
</style>
|