mirror of
https://github.com/caojiezi2003/Snavigation.git
synced 2025-04-05 07:16:57 +00:00
19 lines
309 B
Vue
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>
|