Fixed card CSS and hint

This commit is contained in:
fedyna-k
2025-01-15 23:51:54 +01:00
parent 8eb8174755
commit ce944c8d92
11 changed files with 82 additions and 25 deletions
+3
View File
@@ -10,6 +10,9 @@ export default function AppCard(props: AppCardProps) {
<a class="app-card" href={`/${props.href}`} f-client-nav={false}>
<span class="material-symbols-outlined">{props.app.icon}</span>
<p>{props.app.name}</p>
<span class="material-symbols-outlined info" data-hint={props.app.hint}>
info
</span>
</a>
);
}