23 lines
435 B
Vue
Raw Normal View History

<template>
<a-layout-footer class="footer">
2024-04-03 13:51:54 +08:00
<div class="footer_title">dc-admin by 兔子先森</div>
</a-layout-footer>
</template>
<script setup lang="ts"></script>
<style lang="scss" scoped>
.footer {
2024-04-03 13:51:54 +08:00
height: 30px;
box-sizing: border-box;
border-top: $border-1 solid $color-border-1;
display: flex;
align-items: center;
}
.footer_title {
text-align: center;
margin: 0 auto;
color: $color-text-4;
}
</style>