You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

30 lines
393 B

<template>
<div id="footer">
<div>
<p>&copy; bnblogs.cc</p>
</div>
</div>
</template>
<script>
export default {
name: "BlogFooter",
};
</script>
<style scoped>
#footer {
position: fixed;
left: 0;
bottom: 0;
height: 50px;
width: 100%;
background: whitesmoke;
text-align: center;
font-weight: bold;
display: flex;
justify-content: center;
align-items: center;
}
</style>