header-logo.vue 481 B

123456789101112131415161718192021222324252627282930
  1. <template>
  2. <div class="top">
  3. <img class="logo" src="/static/logo_big.png" alt="">
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. data () {
  9. return {
  10. }
  11. }
  12. }
  13. </script>
  14. <style lang="scss" scoped>
  15. .top {
  16. position: sticky;
  17. top: 0;
  18. z-index: 10;
  19. display: flex;
  20. align-items: center;
  21. justify-content: center;
  22. padding-top: 8rpx;
  23. padding-bottom: 16rpx;
  24. background-color: #10044A;
  25. .logo {
  26. height: 24px;
  27. }
  28. }
  29. </style>