purityselect_admin/resources/js/views/pages/cards/gamification/CardAward.vue
2024-10-25 19:58:19 +05:00

50 lines
1005 B
Vue

<script setup>
import trophy from '@images/misc/trophy.png'
</script>
<template>
<VCard class="position-relative">
<VCardText>
<div class="mb-3">
<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-3">
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 .triangle-bg {
position: absolute;
inline-size: 10.375rem;
inset-block-end: 0;
inset-inline-end: 0;
}
.v-card .trophy {
position: absolute;
inline-size: 5.188rem;
inset-block-end: 1rem;
inset-inline-end: 1rem;
}
</style>