HelpHeader.vue 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <template>
  2. <div class="header_help">
  3. <div>
  4. <img src="@/assets/img/logo.png" alt="">
  5. <router-link to="/helps" class="help">帮助文档</router-link>
  6. </div>
  7. <a href="//cloud.cocorobo.cn">
  8. <span>CocoClass</span>
  9. </a>
  10. </div>
  11. </template>
  12. <script>
  13. </script>
  14. <style lang="less" scoped>
  15. .header_help {
  16. display: flex;
  17. flex-direction: row;
  18. align-items: center;
  19. justify-content: space-between;
  20. color: rgba(46, 90, 168, 1);
  21. font-size: 16px;
  22. font-weight: 600;
  23. // padding: 5px;
  24. height:53px;
  25. line-height:53px;
  26. border-bottom: 1px solid #eee;
  27. div {
  28. display: flex;
  29. flex-direction: row;
  30. align-items: center;
  31. img {
  32. margin-right: 10px;
  33. }
  34. }
  35. .help {
  36. vertical-align: middle
  37. }
  38. span {
  39. border: 2px solid rgba(46, 90, 168, 1);
  40. padding: 4px 12px;
  41. border-radius: 100px;
  42. }
  43. a {
  44. display:inline-block;
  45. color: rgba(46, 90, 168, 1);
  46. padding-left:10px;
  47. border-left:1px solid #eee;
  48. }
  49. }
  50. </style>