Skip to content

Commit 5a3d9c4

Browse files
committed
replace text file icon
1 parent 953d65e commit 5a3d9c4

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

app/components/AppHeader.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ const mobileLinks = computed<NavigationConfigWithGroups>(() => [
8989
target: '_blank',
9090
type: 'link',
9191
external: true,
92-
iconClass: 'i-carbon:document',
92+
iconClass: 'i-lucide:file-text',
9393
},
9494
{
9595
name: 'Source',

app/components/Package/SkillsModal.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ function getWarningTooltip(skill: SkillListItem): string | undefined {
202202
}}
203203
</span>
204204
<span v-if="skill.fileCounts?.references" class="text-fg-subtle">
205-
<span class="i-carbon:document size-3 align-[-2px] me-0.5" />{{
205+
<span class="i-lucide:file-text size-3 align-[-2px] me-0.5" />{{
206206
$t(
207207
'package.skills.file_counts.refs',
208208
{ count: skill.fileCounts.references },

app/components/Settings/TranslationHelper.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ ${template}`
132132
rel="noopener noreferrer"
133133
class="inline-flex items-center gap-1.5 px-2.5 py-1.5 text-xs text-fg-muted hover:text-fg rounded transition-colors focus-visible:outline-accent/70"
134134
>
135-
<span class="i-carbon:document w-3.5 h-3.5" aria-hidden="true" />
135+
<span class="i-lucide:file-text w-3.5 h-3.5" aria-hidden="true" />
136136
{{ $t('i18n.view_guide') }}
137137
</a>
138138
</div>

app/pages/package-code/[[org]]/[packageName]/v/[version]/[...filePath].vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -486,7 +486,7 @@ defineOgImageComponent('Default', {
486486

487487
<!-- File too large warning -->
488488
<div v-else-if="isViewingFile && isFileTooLarge" class="py-20 text-center">
489-
<div class="i-carbon:document w-12 h-12 mx-auto text-fg-subtle mb-4" />
489+
<div class="i-lucide:file-text w-12 h-12 mx-auto text-fg-subtle mb-4" />
490490
<p class="text-fg-muted mb-2">{{ $t('code.file_too_large') }}</p>
491491
<p class="text-fg-subtle text-sm mb-4">
492492
{{

app/pages/package/[[org]]/[name].vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -760,7 +760,7 @@ const showSkeleton = shallowRef(false)
760760
v-if="docsLink"
761761
:to="docsLink"
762762
aria-keyshortcuts="d"
763-
classicon="i-carbon:document"
763+
classicon="i-lucide:file-text"
764764
>
765765
{{ $t('package.links.docs') }}
766766
</LinkBase>

0 commit comments

Comments
 (0)