restyled model entry

This commit is contained in:
AndzejsP
2023-05-11 13:07:49 +03:00
parent f6ece2a0f1
commit bc3f98fb50
2 changed files with 61 additions and 57 deletions

View File

@ -1,11 +1,14 @@
<template>
<div class="flex items-center space-x-4 py-4">
<div class="flex items-center p-4 hover:bg-primary-light rounded-lg mb-2 shadow-lg">
<div class="flex-shrink-0">
<i :class="`fas ${icon} text-xl`"></i>
</div>
<div class="flex-1">
<h3 class="font-bold text-lg">{{ title }}</h3>
<p class="text-gray-600">{{ description }}</p>
<p class="opacity-80">{{ description }}</p>
</div>
<div class="flex-shrink-0">
<button
@ -16,6 +19,7 @@
{{ isInstalled ? 'Uninstall' : 'Install' }}
</button>
</div>
</div>
</template>