diff --git a/packages/client/src/component/March.tsx b/packages/client/src/component/March.tsx index 3efeb12..4193547 100644 --- a/packages/client/src/component/March.tsx +++ b/packages/client/src/component/March.tsx @@ -93,7 +93,7 @@ export function March({ > {inComing.map((i) => ( diff --git a/packages/client/tailwind.config.js b/packages/client/tailwind.config.js index a7e24e2..12ed262 100644 --- a/packages/client/tailwind.config.js +++ b/packages/client/tailwind.config.js @@ -2,7 +2,17 @@ export default { content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"], theme: { - extend: {}, + extend: { + keyframes: { + blink: { + "0%, 100%": { opacity: "1" }, + "50%": { opacity: "0" }, + }, + }, + animation: { + blink: "blink 2s linear infinite", + }, + }, }, plugins: [require("daisyui")], daisyui: {