NavBarTitle.vue 543 B

123456789101112131415161718192021222324252627282930313233
  1. <template>
  2. <a
  3. class="nav-bar-title"
  4. :href="$withBase($localePath)"
  5. :aria-label="`${$siteByRoute.title}, back to home`"
  6. >
  7. <img
  8. v-if="$themeConfig.logo"
  9. class="logo"
  10. :src="$withBase($themeConfig.logo)"
  11. alt="Logo"
  12. />
  13. {{ $site.title }}
  14. </a>
  15. </template>
  16. <style scoped>
  17. .nav-bar-title {
  18. font-size: 1.3rem;
  19. font-weight: 600;
  20. color: var(--c-text);
  21. }
  22. .nav-bar-title:hover {
  23. text-decoration: none;
  24. }
  25. .logo {
  26. margin-right: 0.75rem;
  27. height: 1.3rem;
  28. vertical-align: bottom;
  29. }
  30. </style>