MobileHeader.vue 713 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <template>
  2. <div class="mobile-header">
  3. <nuxt-link class="fa fa-camera-retro fa-2x" to="/news">返回</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. height:44px;
  16. display:flex;
  17. justify-content:space-around;
  18. align-items:center;
  19. border-bottom:1px solid #ccc;
  20. background: #3e82f5;
  21. padding:0 20px 0 10px;
  22. color:#fff;
  23. }
  24. .mobile-header p{
  25. flex:1;
  26. font-size:18px;
  27. text-align: center;
  28. margin-top:10px;
  29. }
  30. .mobile-header a{
  31. font-size:14px;
  32. color:#fff;
  33. }
  34. .mobile-header a:last-child{
  35. font-size:16px;
  36. }
  37. </style>