Skip to content

Commit 62e614c

Browse files
committed
docs: fix system icon
1 parent 2d2ea75 commit 62e614c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/app.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export default defineAppConfig({
1313
icons: {
1414
dark: 'i-lucide-moon',
1515
light: 'i-lucide-sun',
16-
system: 'i-lucide-screen',
16+
system: 'i-lucide-laptop',
1717
search: 'i-lucide-search',
1818
external: 'i-lucide-arrow-up-right',
1919
chevron: 'i-lucide-chevron-down',

docs/components/AppHeader.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,11 +67,11 @@ onMounted(async () => {
6767

6868
<template #right>
6969
<div class="flex items-center gap-1.5 transition-opacity duration-300" :class="[ready ? 'opacity-100' : 'opacity-0']">
70+
<UButton color="gray" variant="ghost" icon="i-simple-icons-github" to="https://github.com/nuxt-hub/core" target="_blank" />
7071
<UTooltip text="Search" :shortcuts="[metaSymbol, 'K']" :popper="{ strategy: 'absolute' }">
7172
<UContentSearchButton :label="null" />
7273
</UTooltip>
73-
<UButton color="gray" variant="ghost" icon="i-simple-icons-github" to="https://github.com/nuxt-hub/core" target="_blank" />
74-
<UColorModeButton class="hidden md:inline-flex" />
74+
<UColorModeButton />
7575
<UButton v-if="ready && !authenticated" size="sm" variant="ghost" label="Log in" to="https://admin.hub.nuxt.com/?utm_source=hub-docs&utm_medium=header&utm_campaign=login" color="gray" class="hidden sm:inline-flex" external />
7676
<UButton v-if="ready && !authenticated" size="sm" variant="solid" label="Get started" to="https://admin.hub.nuxt.com/?utm_source=hub-docs&utm_medium=header&utm_campaign=signup" class="hidden sm:inline-flex" external />
7777
<UButton v-if="ready && authenticated" size="sm" label="Dashboard" to="https://admin.hub.nuxt.com/?utm_source=hub-docs&utm_medium=header&utm_campaign=dashboard" color="green" class="hidden sm:inline-flex" external />

0 commit comments

Comments
 (0)