jscdn.ink/dist/components/footer.vue

30 lines
580 B
Vue
Raw Normal View History

2022-12-29 19:05:15 +08:00
<template>
<footer class="copyright">
2023-01-06 19:07:48 +08:00
<span>&copy;Copyright 2022 jscdn.ink Power by</span>
<a class="link" target="_blank" href="//github.com/bytedo/vue-live">vue-live</a>
2022-12-29 19:05:15 +08:00
</footer>
</template>
<script>
export default {}
</script>
<style lang="scss" scoped>
.copyright {
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 128px;
background: var(--color-plain-1);
color: var(--color-grey-2);
2023-01-06 19:07:48 +08:00
.link {
margin-left: 6px;
color: var(--color-blue-1);
text-decoration: underline;
2022-12-29 19:05:15 +08:00
}
}
</style>