Skip to content

Commit 9e71c63

Browse files
committed
fix: edit link
1 parent a587726 commit 9e71c63

3 files changed

Lines changed: 3 additions & 7 deletions

File tree

app/assets/css/main.css

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -84,10 +84,6 @@ body,
8484
}
8585
}
8686

87-
.main-gradient {
88-
@apply bg-gradient-to-r from-inverted/45 to-inverted to-50% bg-clip-text text-transparent;
89-
}
90-
9187
.bg-stripes {
9288
@apply w-full [background-size:4px_4px];
9389
@apply dark:[background-image:linear-gradient(-45deg,var(--color-neutral-700)_12.50%,transparent_12.50%,transparent_50%,var(--color-neutral-700)_50%,var(--color-neutral-700)_62.50%,transparent_62.50%,transparent_100%)];

app/components/AppSurround.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const next = computed(() => props.surround[1])
2222
</div>
2323
<USeparator v-if="!next" orientation="vertical" class="w-2 h-[24px]" />
2424
<div v-if="!next" class="flex flex-col truncate">
25-
<p class="font-medium main-gradient brightness-150 text-sm">
25+
<p class="font-medium brightness-150 text-sm">
2626
{{ prev.title }}
2727
</p>
2828
<p class="max-sm:hidden text-muted line-clamp-1 text-sm">
@@ -36,7 +36,7 @@ const next = computed(() => props.surround[1])
3636
>
3737
<NuxtLink :to="next.path" class="absolute inset-0 z-10" />
3838
<div class="flex flex-col text-right truncate">
39-
<p class="font-medium main-gradient brightness-150 text-sm">
39+
<p class="font-medium brightness-150 text-sm">
4040
{{ next.title }}
4141
</p>
4242
<p class="max-sm:hidden text-muted line-clamp-1 text-sm">

app/pages/docs/[...slug].vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ defineOgImageComponent('Docs', {
6262
const editThisPage = computed(() => ({
6363
icon: 'i-heroicons-pencil-square-solid',
6464
label: 'Edit this page',
65-
to: `https://github.com/vercube/vercube/edit/main/content/${page?.value?.stem}.md`,
65+
to: `https://github.com/vercube/vercube/edit/main/${page?.value?.stem}.md`,
6666
target: '_blank'
6767
}))
6868

0 commit comments

Comments
 (0)