update UI
Some checks failed
Deploy / deploy (push) Has been cancelled

This commit is contained in:
2025-09-24 21:00:55 +08:00
parent de47e761ec
commit f428291698
3 changed files with 10 additions and 11 deletions

View File

@@ -1,5 +1,5 @@
<template>
<n-grid :cols="5" :x-gap="20">
<n-grid :cols="isDesktop ? 5: 1" :x-gap="20">
<n-gi :span="2">
<n-flex vertical size="large">
<n-flex align="center">
@@ -30,9 +30,8 @@
</n-grid>
</template>
<script setup lang="ts">
import { ref, computed, watch } from "vue"
import { isDesktop } from "~/shared/composables/breakpoints"
import { formatISO, sub, type Duration } from "date-fns"
import { NButton } from "naive-ui"
import WeeklyChart from "./components/WeeklyChart.vue"
import Details from "./components/Details.vue"
import AI from "./components/AI.vue"