Skip to content

Commit f1c6d79

Browse files
committed
fix: optimize folder icons
1 parent c950c91 commit f1c6d79

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

addons/explorer/src/renderer/FileExplorer.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ function autoselect(event: FocusEvent) {
285285
&.directory {
286286
.file-icon {
287287
color: rgb(var(--system-blue));
288-
fill: currentColor;
288+
fill: rgb(var(--system-blue) / 50%);
289289
}
290290
}
291291
}

src/renderer/components/TerminalTeletype.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ function getCompletionIcon(item: CommandCompletion) {
110110
case 'file':
111111
return 'lucide-file'
112112
case 'directory':
113-
return 'lucide-folder-open'
113+
return 'lucide-folder-closed'
114114
case 'recommendation':
115115
return 'lucide-lightbulb'
116116
case 'third-party':

0 commit comments

Comments
 (0)