Snavigation/src/components/Footer.vue
2023-08-07 18:09:18 +08:00

19 lines
309 B
Vue

<template>
<footer id="footer">114514</footer>
</template>
<style lang="scss" scoped>
#footer {
position: absolute;
display: flex;
align-items: center;
justify-content: center;
bottom: 0;
height: 60px;
width: 100%;
font-size: 14px;
color: var(--main-text-color);
z-index: 1;
}
</style>