MobileHeader.vue 511 B

123456789101112131415161718192021222324252627
  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. width:100%;
  13. height:60px;
  14. display:flex;
  15. padding:.9rem;
  16. justify-content:space-around;
  17. border-bottom:1px solid #ccc;
  18. background: #f8f8f8;
  19. }
  20. .mobile-header p{
  21. flex:1;
  22. font-size:.24rem;
  23. text-align: center;
  24. margin-top:10px;
  25. }
  26. </style>