Skip to content

Commit

Permalink
fix: section livemap stats icon
Browse files Browse the repository at this point in the history
  • Loading branch information
robsongajunior committed Nov 12, 2024
1 parent 92778cd commit 55df566
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions src/templates/livemap/UIControls.vue
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,12 @@
v-if="status"
>
<strong class="md:text-7xl text-5xl font-semibold w-fit leading-tight">
<div class="flex flex-col items-end">
<Tile severity="primary">
<i class="ai ai-marketplace text-xs"></i>
</Tile>
</div>

{{ noLabelunitHelper(activeGlobe, status) }}
</strong>
<!-- <BigNumbers :items="[{title: }]" /> -->
Expand All @@ -171,6 +177,12 @@
v-if="status"
>
<strong class="md:text-7xl text-5xl font-semibold w-fit leading-tight">
<div class="flex flex-col items-end">
<Tile severity="primary">
<i class="ai ai-network-lists text-xs"></i>
</Tile>
</div>

{{ noLabelunitHelper(activeGlobe, status) }}
</strong>
<!-- <BigNumbers :items="[{title: noLabelunitHelper(activeGlobe, status)}]" /> -->
Expand All @@ -188,6 +200,12 @@
v-if="status"
>
<strong class="md:text-7xl text-5xl font-semibold w-fit leading-tight">
<div class="flex flex-col items-end">
<Tile severity="primary">
<i class="ai ai-secure-pilar text-xs"></i>
</Tile>
</div>

{{ noLabelunitHelper(activeGlobe, status) }}
</strong>
<!-- <BigNumbers :items="[{title: noLabelunitHelper(activeGlobe, status)}]" /> -->
Expand All @@ -198,6 +216,11 @@

<div v-show="activeGlobe === 'edges'">
<strong class="md:text-7xl text-5xl font-semibold w-fit leading-tight">
<div class="flex flex-col items-end">
<Tile severity="primary">
<i class="pi pi-map-marker text-xs"></i>
</Tile>
</div>
+100
</strong>
<!-- <BigNumbers :items="[{title: '+100'}]" /> -->
Expand Down Expand Up @@ -229,6 +252,7 @@ import { dateHelper, noLabelunitHelper, unitHelper } from "./helper/formatter"
import Button from "primevue/button"
import Overline from "../overline"
import Tile from "../tile"
// import BigNumbers from "../bignumbers"
Expand Down

0 comments on commit 55df566

Please sign in to comment.