index.vue 544 B

1234567891011121314151617181920212223
  1. <template>
  2. <div class="layout-footer">
  3. <a href="https://github.com/LanceJiang" target="_blank"> 2028 © 爱组搭 aizuda.com</a>
  4. </div>
  5. </template>
  6. <style scoped lang="scss">
  7. .layout-footer {
  8. display: flex;
  9. align-items: center;
  10. justify-content: center;
  11. height: 30px;
  12. background-color: var(--el-footer-bg-color);
  13. border-top: 1px solid var(--el-border-color-light);
  14. a {
  15. font-size: 14px;
  16. //color: var(--el-text-color-secondary);
  17. color: var(--el-footer-text-color);
  18. text-decoration: none;
  19. letter-spacing: 0.5px;
  20. }
  21. }
  22. </style>