diff --git a/app/globals.css b/app/globals.css index 8fe3d0f..3585fdc 100644 --- a/app/globals.css +++ b/app/globals.css @@ -130,3 +130,13 @@ body { .prose :not(pre) > code::after { content: none !important; } + +/* ── Corner ribbon animation ── */ +@keyframes blink { + 0%, 100% { opacity: 1; } + 50% { opacity: 0.4; } +} + +.animate-blink { + animation: blink 0.8s ease-in-out infinite; +}