From a8faf0f7e54509d5bbac8c45f217fc3fe895694f Mon Sep 17 00:00:00 2001 From: miteruzo Date: Sun, 13 Jul 2025 12:31:21 +0000 Subject: [PATCH] #24 --- frontend/src/pages/NotFound.tsx | 6 +++++- frontend/tailwind.config.js | 12 +++++++++++- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/frontend/src/pages/NotFound.tsx b/frontend/src/pages/NotFound.tsx index cefa2c9..a1b7f2f 100644 --- a/frontend/src/pages/NotFound.tsx +++ b/frontend/src/pages/NotFound.tsx @@ -10,5 +10,9 @@ export default () => ( ページないよ (笑) | {SITE_TITLE} - Not Found +
+ 404
ページないよ(笑) +
) diff --git a/frontend/tailwind.config.js b/frontend/tailwind.config.js index b7d6d02..a813597 100644 --- a/frontend/tailwind.config.js +++ b/frontend/tailwind.config.js @@ -5,7 +5,17 @@ export default { content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'], theme: { - extend: {}, + extend: { + keyframes: { + 'rainbow-scroll': { + '0%': { backgroundPosition: '0% 50%' }, + '100%': { backgroundPosition: '200% 50%' }, + }, + }, + animation: { + 'rainbow-scroll': 'rainbow-scroll .25s linear infinite', + }, + } }, plugins: [], } satisfies Config