diff --git a/icon.png b/static/icon.png similarity index 100% rename from icon.png rename to static/icon.png diff --git a/static/icons/clipboard.png b/static/icons/clipboard.png new file mode 100644 index 0000000..499bff1 Binary files /dev/null and b/static/icons/clipboard.png differ diff --git a/static/icons/open-folder.png b/static/icons/open-folder.png new file mode 100644 index 0000000..ca84780 Binary files /dev/null and b/static/icons/open-folder.png differ diff --git a/static/icons/vs2022.png b/static/icons/vs2022.png new file mode 100644 index 0000000..25f71c1 Binary files /dev/null and b/static/icons/vs2022.png differ diff --git a/static/icons/vscode.png b/static/icons/vscode.png index f147745..d1003de 100644 Binary files a/static/icons/vscode.png and b/static/icons/vscode.png differ diff --git a/static/js/launcher.js b/static/js/launcher.js index c269a8b..c626da5 100644 --- a/static/js/launcher.js +++ b/static/js/launcher.js @@ -1050,7 +1050,7 @@ class LauncherManager { // Intentar cargar icono personalizado const img = document.createElement('img'); img.src = `/api/group-icon/launcher/${groupId}`; - img.className = 'w-5 h-5 rounded object-cover'; + img.className = 'w-7 h-7 rounded object-cover'; img.onerror = () => { // Fallback a icono por defecto basado en categor铆a iconElement.innerHTML = this.getDefaultIconForCategory(fallbackCategory); diff --git a/templates/index.html b/templates/index.html index e20814b..c15122f 100644 --- a/templates/index.html +++ b/templates/index.html @@ -5,6 +5,7 @@