MobileHeader.vue 538 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <div class="mobile-header">
  3. <nuxt-link class="fa fa-camera-retro fa-3x span" to="/news"></nuxt-link>
  4. <p>优软商城</p>
  5. <span class="fa fa-camera-retro fa-3x"></span>
  6. </div>
  7. </template>
  8. <script>
  9. </script>
  10. <style>
  11. .mobile-header{
  12. position:fixed;
  13. top:0;
  14. width:100%;
  15. height:60px;
  16. display:flex;
  17. padding:.9rem;
  18. justify-content:space-around;
  19. border-bottom:1px solid #ccc;
  20. background: #f8f8f8;
  21. }
  22. .mobile-header p{
  23. flex:1;
  24. font-size:2.4rem;
  25. text-align: center;
  26. margin-top:10px;
  27. }
  28. </style>