Skip to content

Commit bd32d6a

Browse files
committed
feat: center text in tatble
1 parent c2bc222 commit bd32d6a

1 file changed

Lines changed: 9 additions & 3 deletions

File tree

components/ClassesCalendar.vue

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,17 @@
2020
:color="getEventColor(event)"
2121
height="100%"
2222
class="text-center"
23+
v-ripple
2324
tile
2425
>
25-
{{ event.name }}
26-
<!-- <v-chip> {{ event.start)}} </v-chip> -->
27-
<!-- <v-chip> {{ event.end)}} </v-chip> -->
26+
<!-- centering -->
27+
<v-container fill-height fluid>
28+
<v-row align="center" justify="center">
29+
<v-col>
30+
{{ event.name }}
31+
</v-col>
32+
</v-row>
33+
</v-container>
2834
</v-card>
2935
</template>
3036
</v-calendar>

0 commit comments

Comments
 (0)