mobileFooter.vue 665 B

123456789101112131415161718192021222324252627282930313233
  1. <template>
  2. <div class="mobile-footer">
  3. <div>
  4. <nuxt-link to="/provider" class="fa fa-camera-retro fa-3x"></nuxt-link>
  5. </div>
  6. <div>
  7. <nuxt-link to="/provider" class="fa fa-camera-retro fa-3x"></nuxt-link>
  8. </div>
  9. <div>
  10. <nuxt-link to="/provider" class="fa fa-camera-retro fa-3x"></nuxt-link>
  11. </div>
  12. </div>
  13. </template>
  14. <script>
  15. </script>
  16. <style scoped>
  17. .mobile-footer{
  18. position:fixed;
  19. bottom:0;
  20. width:100%;
  21. height:60px;
  22. display:flex;
  23. text-align: center;
  24. justify-content:space-between;
  25. align-items:center;
  26. border-top:1px solid #ccc;
  27. background: #f8f8f8;
  28. }
  29. .mobile-footer div{
  30. flex:1;
  31. }
  32. </style>