Files
panel/resources/js/views/dashboards/ecommerce/EcommerceCongratulationsJohn.vue

43 lines
952 B
Vue
Raw Permalink Normal View History

2025-08-04 16:33:07 +03:30
<script setup>
import congoImg from '@images/illustrations/congo-illustration.png'
</script>
<template>
<VCard>
<VRow no-gutters>
<VCol cols="8">
<VCardText>
<h5 class="text-h5 text-no-wrap">
Congratulations John! 🎉
</h5>
<p class="mb-2">
Best seller of the month
</p>
<h4 class="text-h4 text-primary mb-1">
$48.9k
</h4>
<VBtn>View Sales</VBtn>
</VCardText>
</VCol>
<VCol cols="4">
<VCardText class="pb-0 px-0 position-relative h-100">
<VImg
:src="congoImg"
:height="$vuetify.display.smAndUp ? 147 : 125"
class="congo-john-img w-100"
/>
</VCardText>
</VCol>
</VRow>
</VCard>
</template>
<style lang="scss" scoped>
.congo-john-img {
position: absolute;
inset-block-end: 0;
inset-inline-end: 1.25rem;
}
</style>