feat: wrap app title in span to get targeted by CSS

pull/3522/head
JD Solanki 2 years ago committed by GitHub
parent 54042ef576
commit bf43d9b801
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -40,7 +40,7 @@ const target = computed(() =>
<slot name="nav-bar-title-before" />
<VPImage v-if="theme.logo" class="logo" :image="theme.logo" />
<template v-if="theme.siteTitle">{{ theme.siteTitle }}</template>
<template v-else-if="theme.siteTitle === undefined">{{ site.title }}</template>
<template v-else-if="theme.siteTitle === undefined"><span>{{ site.title }}</span></template>
<slot name="nav-bar-title-after" />
</a>
</div>

Loading…
Cancel
Save