Skip to content

Commit 82d2ea3

Browse files
committed
chore: update
1 parent f8e265e commit 82d2ea3

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

docs/app/assets/css/devframe.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
width: 100%;
4747
}
4848

49-
/* Do not render "description" slot */
50-
[data-slot="description"] {
49+
/* Do not render "description" slot in page, as the content are duplicated */
50+
[data-slot="wrapper"] + [data-slot="description"] {
5151
display: none;
5252
}

docs/app/components/AppHeader.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// persistent top-right nav, next to the version history button.
44
const { header, footer, assistant } = useAppConfig()
55
const content = useDocsContent()
6-
const historyOpen = useVersionHistory()
6+
// const historyOpen = useVersionHistory()
77
const assistantOpen = useAssistant()
88
const navigation = useMainNavigation()
99
</script>
@@ -39,15 +39,15 @@ const navigation = useMainNavigation()
3939
class="p-2"
4040
/>
4141

42-
<UButton
42+
<!-- <UButton
4343
icon="i-lucide-history"
4444
:color="content.mode === 'prod' ? 'neutral' : 'warning'"
4545
:variant="content.mode === 'prod' ? 'outline' : 'subtle'"
4646
aria-label="Version history"
4747
:ui="{ leadingIcon: 'size-4' }"
4848
class="p-2"
4949
@click="historyOpen = !historyOpen"
50-
/>
50+
/> -->
5151

5252
<template v-if="header?.links">
5353
<UButton

0 commit comments

Comments
 (0)