GlobalFooter.vue 753 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <template>
  2. <div class="footer">
  3. <div class="links">
  4. </div>
  5. <div class="copyright">
  6. Copyright © 2020 <a target="_blank" href="https://www.stylefeng.cn/">stylefeng</a> All rights reserved. Guns-Seperation v1.2
  7. </div>
  8. </div>
  9. </template>
  10. <script>
  11. export default {
  12. name: 'GlobalFooter',
  13. data () {
  14. return {}
  15. }
  16. }
  17. </script>
  18. <style lang="less" scoped>
  19. .footer {
  20. padding: 0 16px;
  21. margin: 48px 0 24px;
  22. text-align: center;
  23. .links {
  24. margin-bottom: 8px;
  25. a {
  26. color: rgba(0, 0, 0, 0.45);
  27. &:hover {
  28. color: rgba(0, 0, 0, 0.65);
  29. }
  30. &:not(:last-child) {
  31. margin-right: 40px;
  32. }
  33. }
  34. }
  35. .copyright {
  36. color: rgba(0, 0, 0, 0.45);
  37. font-size: 14px;
  38. }
  39. }
  40. </style>