kun-galgame-vue/src/views/topic/aside/footer/TopicAsideFooter.vue

25 lines
536 B
Vue
Raw Normal View History

2023-04-20 09:38:03 +00:00
<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>