Remove shadows

This commit is contained in:
Cagatay Civici 2024-01-24 13:57:05 +03:00
parent c51fae9bd4
commit 43fe926163
32 changed files with 144 additions and 144 deletions

View file

@ -152,7 +152,7 @@ const showProducts = () => {
<Column field="name" header="Name"></Column>
<Column header="Image">
<template #body="slotProps">
<img :src="'https://primefaces.org/cdn/primevue/images/product/' + slotProps.data.image" :alt="slotProps.data.name" class="shadow-2 w-4rem" />
<img :src="'https://primefaces.org/cdn/primevue/images/product/' + slotProps.data.image" :alt="slotProps.data.name" class="w-4rem" />
</template>
</Column>
<Column field="category" header="Category"></Column>
@ -265,7 +265,7 @@ export default {
<Column field="name" header="Name"></Column>
<Column header="Image">
<template #body="slotProps">
<img :src="'https://primefaces.org/cdn/primevue/images/product/' + slotProps.data.image" :alt="slotProps.data.name" class="shadow-2 w-4rem" />
<img :src="'https://primefaces.org/cdn/primevue/images/product/' + slotProps.data.image" :alt="slotProps.data.name" class="w-4rem" />
</template>
</Column>
<Column field="category" header="Category"></Column>