From 7370e6c128b819bf51260783c6ffbe47be8e0b47 Mon Sep 17 00:00:00 2001 From: yyamashita Date: Tue, 14 Jul 2026 23:09:27 +0900 Subject: Add navigation progress bar for client-side transitions Co-Authored-By: Claude Sonnet 4.6 --- app/app.css | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'app/app.css') diff --git a/app/app.css b/app/app.css index 99345d8..24e2c92 100644 --- a/app/app.css +++ b/app/app.css @@ -5,6 +5,11 @@ "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; } +@keyframes nav-progress { + from { transform: scaleX(0.05); } + to { transform: scaleX(0.85); } +} + html, body { @apply bg-white dark:bg-gray-950; -- cgit v1.2.3