kun-galgame-vue/src/views/topic/aside/footer/TopicAsideFooter.vue
2023-04-20 20:01:38 +08:00

28 lines
607 B
Vue

<!--
这是 KUNGalgame 帖子页面展示版权信息的地方
-->
<script setup lang="ts"></script>
<template>
<!-- 版权描述,版本号 -->
<div class="kungalgame-footer-copyright">
<span>Copyright © 2023 KUNgalgame</span>
<span>All rights reserved | Version 0.01</span>
</div>
</template>
<style scoped>
/* 版权描述,版本号 */
.kungalgame-footer-copyright {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-size: 14px;
/* 距离上面的距离 */
margin-top: 17px;
/* 文字间距 */
letter-spacing: 1px;
}
</style>