| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | 3x | <template>
<div class="todo-footer">
<footer>vue-koa-todos by <span>BreezyMelon</span></footer>
</div>
</template>
<script>
export default {
name: 'todo',
data () {
return {}
}
}
</script>
<style scoped lang="scss">
.todo-footer {
font-family: 'Avenir', Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
flex: 0 0 auto;
height: 140px;
line-height: 140px;
color: #b7b7b7;
font-size: 14px;
font-weight: normal;
span {
font-weight: bold;
}
}
</style>
|