feat: dark mode stats card

This commit is contained in:
Methapon2001 2024-04-10 20:43:58 +07:00
parent 705a6e9b15
commit e7dc511b03

View file

@ -17,7 +17,7 @@ const color = ['pink', 'purple'];
style="gap: var(--size-4)"
:class="{ 'justify-between': $q.screen.lt.md }"
>
<app-box
<AppBox
v-for="(v, i) in props.branch"
:key="v.label"
class="bordered wave col-12"
@ -40,13 +40,12 @@ const color = ['pink', 'purple'];
<div class="col-4 text-h5 text-weight-bold">{{ v.amount }}</div>
<div class="text-weight-bold">{{ $t(v.label) }}</div>
</div>
</app-box>
</AppBox>
</div>
</template>
<style scoped>
.wave {
background: #ffffff;
position: relative;
display: flex;
}