Footer.vue 725 B

1234567891011121314151617181920212223242526272829303132333435
  1. <template>
  2. <div class="hero-footer footer footer-custom">
  3. <div class="container">
  4. <div class="has-text-centered">
  5. <span class="icon">
  6. <i class="fab fa-github"></i>
  7. </span>
  8. <p>ddowa <a target="_" href="https://www.comeagain.co.kr">www.comeagain.co.kr</a></p>
  9. </div>
  10. </div>
  11. </div>
  12. </template>
  13. <style scoped lang="scss">
  14. /* footer */
  15. .icon {
  16. margin-bottom: 20px;
  17. }
  18. .fa-github {
  19. font-size: 45px;
  20. }
  21. .footer-custom {
  22. background-color: #0d0c0d;
  23. color: #fff;
  24. }
  25. .footer-custom p {
  26. font-size: 1rem;
  27. font-weight: 500;
  28. }
  29. .footer-custom a {
  30. color: #d74436;
  31. }
  32. .footer-custom a:hover {
  33. color: #e50076;
  34. }
  35. </style>