Skip to content

Commit

Permalink
center align tiles contents
Browse files Browse the repository at this point in the history
  • Loading branch information
alireza0 committed Mar 1, 2024
1 parent abcf0bc commit cfa5f38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/Main.vue
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
<v-col cols="12" sm="6" md="3" v-for="i in reloadItems" :key="i">
<v-card class="rounded-lg" variant="outlined" height="200px"
:title="menuItems.flatMap(cat => cat.value).find(m => m.value == i)?.title">
<v-card-text style="padding: 0 16px;">
<v-card-text style="padding: 0 16px;" align="center" justify="center">
<Gauge :tilesData="tilesData" :type="i" v-if="i.charAt(0) == 'g'" />
<History :tilesData="tilesData" :type="i" v-if="i.charAt(0) == 'h'" />
<template v-if="i == 'i-sys'">
Expand Down

0 comments on commit cfa5f38

Please sign in to comment.