From 4c17adbf552cc7a2b3b4fdefda351a2f94472055 Mon Sep 17 00:00:00 2001 From: Space-Banane Date: Wed, 20 May 2026 21:19:53 +0200 Subject: [PATCH] Restore service icons in compact link list --- frontend/src/app.tsx | 9 +++++++-- frontend/src/styles.css | 10 +++++++++- 2 files changed, 16 insertions(+), 3 deletions(-) diff --git a/frontend/src/app.tsx b/frontend/src/app.tsx index 15aeccf..82c4ab9 100644 --- a/frontend/src/app.tsx +++ b/frontend/src/app.tsx @@ -192,8 +192,13 @@ function Dashboard({ {group.items.map((link) => (
  • - {link.name} - {link.description || link.url} + + + {link.name} + {link.description || link.url} +
  • ))} diff --git a/frontend/src/styles.css b/frontend/src/styles.css index e6aa245..28c135a 100644 --- a/frontend/src/styles.css +++ b/frontend/src/styles.css @@ -48,7 +48,15 @@ body { } .link-row { - @apply block rounded-md px-2 py-2 transition hover:bg-slate-800; + @apply flex items-center gap-3 rounded-md px-2 py-2 transition hover:bg-slate-800; +} + +.link-icon { + @apply grid h-8 w-8 shrink-0 place-items-center overflow-hidden rounded-md border border-slate-700 bg-slate-900 text-xs font-semibold text-slate-300; +} + +.link-icon-image { + @apply h-full w-full object-contain; } .link-name {