diff --git a/console/src/uc/MomentsList.vue b/console/src/uc/MomentsList.vue index 7b61307..6847c51 100644 --- a/console/src/uc/MomentsList.vue +++ b/console/src/uc/MomentsList.vue @@ -11,7 +11,7 @@ import type { User } from "@halo-dev/api-client"; import type { ListedMoment } from "@/types"; import { useQuery } from "@tanstack/vue-query"; import apiClient from "@/utils/api-client"; -import MomentItem from ".//MomentItem.vue"; +import MomentItem from "./MomentItem.vue"; import DatePicker from "vue-datepicker-next"; import "vue-datepicker-next/index.css"; import "vue-datepicker-next/locale/zh-cn.es"; @@ -147,7 +147,7 @@ watch([tag, momentsRangeTime], () => { -
+
diff --git a/console/src/views/MomentsList.vue b/console/src/views/MomentsList.vue index 91984fd..8020c72 100644 --- a/console/src/views/MomentsList.vue +++ b/console/src/views/MomentsList.vue @@ -129,7 +129,7 @@ const handleJumpToFrontDesk = () => { -
+
diff --git a/console/tailwind.config.js b/console/tailwind.config.js index c097284..75fdef1 100644 --- a/console/tailwind.config.js +++ b/console/tailwind.config.js @@ -2,16 +2,5 @@ module.exports = { prefix: "moments-", content: ["./index.html", "./src/**/*.{vue,js,ts,jsx,tsx}"], - theme: { - container: { - padding: { - DEFAULT: "0.5rem", - sm: "1.5rem", - lg: "4rem", - xl: "14rem", - "2xl": "22rem", - }, - }, - }, plugins: [require("@tailwindcss/aspect-ratio")], };