25 lines
536 B
Vue
25 lines
536 B
Vue
|
<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>
|