hgh_admin/resources/js/views/dashboards/analytics/AnalyticsAward.vue
2024-05-29 22:34:28 +05:00

43 lines
892 B
Vue

<script setup>
import trophy from '@images/misc/trophy.png'
</script>
<template>
<VCard class="position-relative">
<VCardText>
<div class="mb-2">
<h5 class="text-h5">
Congratulations John! <span class="text-high-emphasis">🎉</span>
</h5>
<div class="text-body-1">
Best seller of the month
</div>
</div>
<h4 class="text-h4 text-primary">
$42.8k
</h4>
<div class="text-body-1 mb-2">
78% of target <span class="text-high-emphasis">🚀</span>
</div>
<VBtn size="small">
View Sales
</VBtn>
</VCardText>
<!-- Trophy -->
<VImg
:src="trophy"
class="trophy"
/>
</VCard>
</template>
<style lang="scss">
.v-card .trophy {
position: absolute;
inline-size: 5.188rem;
inset-block-end: 1.25rem;
inset-inline-end: 1.25rem;
}
</style>