summaryrefslogtreecommitdiff
path: root/app/app.css
diff options
context:
space:
mode:
authoryyamashita <yyamashita@hetzner.yyamashita.com>2026-07-14 23:09:27 +0900
committeryyamashita <yyamashita@hetzner.yyamashita.com>2026-07-14 23:09:27 +0900
commit7370e6c128b819bf51260783c6ffbe47be8e0b47 (patch)
tree4b48861b5761e475c06159c91366707142f27d30 /app/app.css
parentc0f61ba314bb2ed0503ec1a00cda0e8e15f89e2d (diff)
Add navigation progress bar for client-side transitionsHEADmaster
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'app/app.css')
-rw-r--r--app/app.css5
1 files changed, 5 insertions, 0 deletions
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;