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.
51 lines
946 B
51 lines
946 B
<template>
|
|
<div class="footer">
|
|
<div class="links">
|
|
<a href="https://github.com/19920625lsg/spring-boot-online-exam" target="_blank">代码仓</a>
|
|
<a href="https://19920625lsg.github.io" target="_blank">关于我</a>
|
|
<a href="mailto:liangshanguang2@gmail.com">联系我</a>
|
|
</div>
|
|
<div class="copyright">
|
|
Copyright
|
|
<a-icon type="copyright" /> 2020 <span>Liang Shan Guang</span>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'GlobalFooter',
|
|
data () {
|
|
return {}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
.footer {
|
|
padding: 0 16px;
|
|
margin: 24px 0 24px;
|
|
text-align: center;
|
|
|
|
.links {
|
|
margin-bottom: 8px;
|
|
|
|
a {
|
|
color: rgba(0, 0, 0, 0.45);
|
|
|
|
&:hover {
|
|
color: rgba(0, 0, 0, 0.65);
|
|
}
|
|
|
|
&:not(:last-child) {
|
|
margin-right: 40px;
|
|
}
|
|
}
|
|
}
|
|
.copyright {
|
|
color: rgba(0, 0, 0, 0.45);
|
|
font-size: 14px;
|
|
}
|
|
}
|
|
</style>
|