Skip to content

Commit

Permalink
chore: decrease the size of DataCharts
Browse files Browse the repository at this point in the history
  • Loading branch information
letwebdev committed Feb 26, 2024
1 parent fb62492 commit 56c3c3a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/DataCharts.vue
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ const option: Ref<EChartsOption> = ref({
</script>
<template>
<v-chart
class="h-375px w-375px lg:(h-500px w-600px)"
class="h-360px w-360px lg:(h-500px w-600px)"
:option="option"
/>
</template>
4 changes: 3 additions & 1 deletion src/views/ChartsView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ import DataCharts from "@/components/DataCharts.vue"
</script>
<template>
<div class="charts">
<h1>Charts</h1>
<h1 class="ml-10px">
Charts
</h1>
<br>
<DataCharts />
<br>
Expand Down

0 comments on commit 56c3c3a

Please sign in to comment.