fix: minor style changes in Apps.vue

This commit is contained in:
Shariq Ansari 2024-08-13 11:51:31 +05:30
parent 7eb3c32458
commit 455c6963a8

View File

@ -20,13 +20,13 @@
<div
class="grid grid-cols-3 justify-between mx-3 p-2 rounded-lg border border-gray-100 bg-white shadow-xl"
>
<div v-for="app in apps.data" key="name">
<div v-for="app in apps.data" :key="app.name">
<a
:href="app.route"
class="flex flex-col gap-1.5 rounded justify-center items-center py-2 px-3 hover:bg-gray-100"
class="flex flex-col gap-1.5 rounded justify-center items-center py-2 px-1 hover:bg-gray-100"
>
<img class="size-8" :src="app.logo" />
<div class="text-sm" @click="app.onClick">
<div class="text-sm text-gray-700" @click="app.onClick">
{{ app.title }}
</div>
</a>