added prettier

This commit is contained in:
Čarodej
2022-02-01 12:21:38 +01:00
parent 5ae875233b
commit b38b532cbe
284 changed files with 25410 additions and 25338 deletions

View File

@@ -1,22 +1,19 @@
<template>
<div class="flex items-center justify-between py-4 border-b dark:border-opacity-5 border-light border-dashed">
<div>
<img :src="$getPaymentLogo(driver)" :alt="driver" class="h-6">
<small class="text-xs text-gray-500 pt-2 leading-4 block">
{{ description }}
</small>
</div>
<div v-if="$slots.default" class="bg-theme-200 inline-block px-3 py-1 rounded-lg relative">
<slot></slot>
</div>
</div>
<div class="flex items-center justify-between border-b border-dashed border-light py-4 dark:border-opacity-5">
<div>
<img :src="$getPaymentLogo(driver)" :alt="driver" class="h-6" />
<small class="block pt-2 text-xs leading-4 text-gray-500">
{{ description }}
</small>
</div>
<div v-if="$slots.default" class="bg-theme-200 relative inline-block rounded-lg px-3 py-1">
<slot></slot>
</div>
</div>
</template>
<script>
export default {
name: 'PaymentMethod',
props: [
'description',
'driver',
]
}
export default {
name: 'PaymentMethod',
props: ['description', 'driver'],
}
</script>