diff --git a/app/app.vue b/app/app.vue index 2c4e5a6..16dfa45 100644 --- a/app/app.vue +++ b/app/app.vue @@ -16,7 +16,3 @@ useSeoMeta({ - - \ No newline at end of file diff --git a/app/assets/css/global.css b/app/assets/css/main.css similarity index 95% rename from app/assets/css/global.css rename to app/assets/css/main.css index e458029..b5abb99 100644 --- a/app/assets/css/global.css +++ b/app/assets/css/main.css @@ -1,3 +1,5 @@ +@import "tailwindcss"; + * { @apply text-zinc-200; font-family: diff --git a/app/components/Explanation.vue b/app/components/Explanation.vue index c136c65..4409aa9 100644 --- a/app/components/Explanation.vue +++ b/app/components/Explanation.vue @@ -11,6 +11,8 @@ defineProps<{ explanation: string | undefined }>(); \ No newline at end of file diff --git a/app/components/chart/BarChart.vue b/app/components/chart/BarChart.vue index e083c31..84a4669 100644 --- a/app/components/chart/BarChart.vue +++ b/app/components/chart/BarChart.vue @@ -52,7 +52,6 @@ const chartOptions = ref({ legend: { labels: { color: "#8a8a8c", - useBorderRadius: true, }, }, }, diff --git a/app/components/chart/LineChart.vue b/app/components/chart/LineChart.vue index 8a81e18..72ec270 100644 --- a/app/components/chart/LineChart.vue +++ b/app/components/chart/LineChart.vue @@ -51,7 +51,6 @@ const chartOptions = ref({ legend: { labels: { color: "#8a8a8c", - useBorderRadius: true, }, }, }, diff --git a/app/layouts/default.vue b/app/layouts/default.vue index e608128..1fec0b0 100644 --- a/app/layouts/default.vue +++ b/app/layouts/default.vue @@ -13,8 +13,8 @@ - - + + Charts
@@ -30,10 +30,6 @@