commit | author | age
|
9bcb19
|
1 |
<template> |
I |
2 |
<div class="footer"> |
|
3 |
<div class="links"> |
|
4 |
</div> |
|
5 |
<div class="copyright"> |
|
6 |
Copyright © 2020 <a target="_blank" href="https://www.xiaonuo.vip/">小诺开源技术</a> All rights reserved. Snowy 1.8 |
|
7 |
</div> |
|
8 |
</div> |
|
9 |
</template> |
|
10 |
|
|
11 |
<script> |
|
12 |
export default { |
|
13 |
name: 'GlobalFooter', |
|
14 |
data () { |
|
15 |
return {} |
|
16 |
} |
|
17 |
} |
|
18 |
</script> |
|
19 |
|
|
20 |
<style lang="less" scoped> |
|
21 |
.footer { |
|
22 |
padding: 0 16px; |
|
23 |
margin: 48px 0 24px; |
|
24 |
text-align: center; |
|
25 |
|
|
26 |
.links { |
|
27 |
margin-bottom: 8px; |
|
28 |
|
|
29 |
a { |
|
30 |
color: rgba(0, 0, 0, 0.45); |
|
31 |
|
|
32 |
&:hover { |
|
33 |
color: rgba(0, 0, 0, 0.65); |
|
34 |
} |
|
35 |
|
|
36 |
&:not(:last-child) { |
|
37 |
margin-right: 40px; |
|
38 |
} |
|
39 |
} |
|
40 |
} |
|
41 |
.copyright { |
|
42 |
color: rgba(0, 0, 0, 0.45); |
|
43 |
font-size: 14px; |
|
44 |
} |
|
45 |
} |
|
46 |
</style> |