Skip to content

Commit

Permalink
docs: fix system icon
Browse files Browse the repository at this point in the history
  • Loading branch information
atinux committed Nov 6, 2024
1 parent 2d2ea75 commit 62e614c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/app.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default defineAppConfig({
icons: {
dark: 'i-lucide-moon',
light: 'i-lucide-sun',
system: 'i-lucide-screen',
system: 'i-lucide-laptop',
search: 'i-lucide-search',
external: 'i-lucide-arrow-up-right',
chevron: 'i-lucide-chevron-down',
Expand Down
4 changes: 2 additions & 2 deletions docs/components/AppHeader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,11 @@ onMounted(async () => {

<template #right>
<div class="flex items-center gap-1.5 transition-opacity duration-300" :class="[ready ? 'opacity-100' : 'opacity-0']">
<UButton color="gray" variant="ghost" icon="i-simple-icons-github" to="https://github.com/nuxt-hub/core" target="_blank" />
<UTooltip text="Search" :shortcuts="[metaSymbol, 'K']" :popper="{ strategy: 'absolute' }">
<UContentSearchButton :label="null" />
</UTooltip>
<UButton color="gray" variant="ghost" icon="i-simple-icons-github" to="https://github.com/nuxt-hub/core" target="_blank" />
<UColorModeButton class="hidden md:inline-flex" />
<UColorModeButton />
<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 />
<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 />
<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 />
Expand Down

0 comments on commit 62e614c

Please sign in to comment.