MobileHeader.vue 726 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <template>
  2. <div class="mobile-header">
  3. <nuxt-link class="fa fa-camera-retro fa-2x" to="/">返回</nuxt-link>
  4. <p>优软商城</p>
  5. <nuxt-link class="fa fa-camera-retro fa-2x" to="/"></nuxt-link>
  6. </div>
  7. </template>
  8. <script>
  9. </script>
  10. <style>
  11. .mobile-header{
  12. width:100%;
  13. position:fixed;
  14. top:0;
  15. z-index:10000;
  16. height:44px;
  17. display:flex;
  18. justify-content:space-around;
  19. align-items:center;
  20. border-bottom:1px solid #ccc;
  21. background: #3e82f5;
  22. padding:0 20px 0 10px;
  23. color:#fff;
  24. }
  25. .mobile-header p{
  26. flex:1;
  27. font-size:18px;
  28. text-align: center;
  29. margin-top:10px;
  30. }
  31. .mobile-header a{
  32. font-size:14px;
  33. color:#fff;
  34. }
  35. .mobile-header a:last-child{
  36. font-size:16px;
  37. }
  38. </style>