Skip to content

Commit

Permalink
fix statistic style
Browse files Browse the repository at this point in the history
  • Loading branch information
jamshidi799 committed Apr 19, 2021
1 parent 322c562 commit c74c548
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/landing/Statistics.vue
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<template>
<v-card tile flat class="secondary my-5 py-md-15 py-3">
<div class="d-flex justify-start align-center flex-wrap px-5 px-md-12">
<v-col cols="6" md="3" v-for="(stat, i) in stats" :key="i">
<v-row class="d-flex justify-center align-center flex-wrap px-5 px-md-12">
<v-col md="4" xl="2" v-for="(stat, i) in stats" :key="i">
<v-card-text class="pl-md-15 py-md-5 p-0 text-right mx-auto">
<v-icon size="75px" right class="mb-7 black--text align-right statisticsIcon">{{ stat.icon }}</v-icon>
<h1 class="part mb-12 mt-5 font-weight-bold">{{ stat.stat }}</h1>
<span class="pt-1 text-md-h4 text-h5 statisticsTitle" style="border-top:2px solid white">{{ stat.title }}</span>
</v-card-text>
</v-col>
</div>
</v-row>
</v-card>
</template>
<script>
Expand Down

0 comments on commit c74c548

Please sign in to comment.